【C/C++】编写一个程序,要求用户输入最多10个高尔夫成绩,并将其存入到一个数组中。程序允许用户提早结束输入,并在一行上显示所有成绩,然后报告平均成绩。请使用3个数组处理函数来分别进行输入、显示和计算平均成绩。
摘要:#include <iostream> #include <vector> using namespace std; static int num = 0; struct Donation { string name ; double money = 0; }; int avg(int &a,int
阅读全文
posted @
2023-12-14 20:01
wshidaboss
阅读(38)
推荐(0) 编辑
[C/C++]编写一个程序,它打开一个文本文件,逐个字符地读取该文件,直到到达文件末尾,然后指出该文件中包含多少个字符
摘要:#include <iostream> #include <fstream> using namespace std; int main(){ fstream filename; int num = 0; char c; filename.open("test.txt", ios::in); whi
阅读全文
posted @
2023-12-14 15:11
wshidaboss
阅读(22)
推荐(0) 编辑