//写好啦,C++的,满足题目要求,测试通过,如果有疑问欢迎交流
//往C盘输入一般需要以管理员身份运行,所以程序里改成了存在D盘了
#include
#include
using namespace std;
int main(){
int count = 0, i, res_sum = 0;
ofstream ofs("D:\\result.txt");
for(i = 1; i<=300; i++){
if(i%2==0&&(i%7==0||i%17==0)){
cout< count++;
res_sum += i;
ofs< if(count%5==0)
cout<}
}
cout<cout< ofs< ofs< ofs.close();
return 0;
}
等大神解释吧
存入文件,C++标准类库的话,用 fstream / ofstream.h 里的函数方法
文件格式的话,是文本文件 .txt 了(c:\result.txt),就是直接把数字转为字符后,把字符、文字串存到文件即可