C++编程:以每行5个数,输出300以内能被7或17整除的偶数并求出其和.在线等

2024-11-28 20:05:56
推荐回答(3个)
回答1:

//写好啦,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;
}

回答2:

等大神解释吧

存入文件,C++标准类库的话,用 fstream / ofstream.h 里的函数方法
文件格式的话,是文本文件 .txt 了(c:\result.txt),就是直接把数字转为字符后,把字符、文字串存到文件即可

回答3: