我正在尝试写入文本文件并从文本文件中读取以获取数组中项目的平均分数。这是我的代码:
#include <iostream>
#include <fstream>
using namespace std;
int main()
{
float total =0;;
ofstream out_file;
out_file.open("number.txt");
const int size = 5;
double num_array[] = {1,2,3,4,5};
for (int count = 0; count < size; count++)
{
if (num_array[count] == 0)
{
cout << "0 digit detected. " << endl;
system("PAUSE");
}
}
double* a = num_array;
out_file << &a;
out_file.close();
ifstream in_file;
in_file.open("number.txt");
if(in_file.fail())
{
cout << "File opening error" << endl;
}else{
for (int count =0; count< size; count++){
total += *a; // Access the element a currently points to
*a++; // Move the pointer by one position forward
}
}
cout << total/size << endl;
system("PAUSE");
return 0;
}
然而,这个程序只是简单地执行而不从文件中读取并返回正确的平均分数。这就是我在文本文件中得到的:
0035FDE8
我认为它应该将整个数组写入文本文件,然后从那里检索元素并计算平均值?
编辑部分
我已经使用指针上的 for 循环修复了对文本文件部分的写入:
for(int count = 0; count < size; count ++){
out_file << *a++ << " " ;
}
但是现在我遇到了另一个问题,即我无法读取文件并计算平均值。有人知道如何解决吗?