全国等级考试资料网

全国计算机等级考试C语言考试程序设计题(2)

分类: 计算机  时间: 2023-02-05 20:07:43  作者: 全国等级考试资料网 

在考生文件夹下,要求程序PROG.C的功能是:

求[1,1000]之间既不能被7整除也不能被5整除的整数之和,将结果存入变量s中。

 

#include "stdio.h"

  #include "math.h"

  #include "stdlib.h"

 void  main()

  {

 

   void NONO( int y);//函数声明

   int s;

   int i;

  /***********begin***********/

  s=0;

   for(i=1;i<=1000;i++)

        if(i%5!=0 && i%7!=0)

                s=s+i;

     else;

 

 

 

 

 

 

  /************end************/

    printf("s=%d ",s);

    NONO(s);

  }

 

  void NONO( int y)

  { FILE  *f;

    f=fopen("PROGOUT.DAT","w");

    fprintf(f,"The Result is :%d ",y);

    fclose(f);

  }

 

相关文章

猜你喜欢

精选计算机