这就是我的程序的工作方式。它提示用户输入,一旦检测到非数字,循环将停止。这是我的代码:
int size = 0;
float number;
float total = 0;
vector <float> data;
//prompt user to enter file name
string file;
cout << "Enter a file name : " ;
cin >> file ;
//concatenate the file name as text file
file += ".txt";
//Write file
cout << "Enter number : ";
ofstream out_file;
out_file.open(file);
while(cin >> number)
{
data.push_back(number);
size++;
}
cout<< "Elements in array are : " ;
//check whether is there any 0 in array else print out the element in array
for (int count = 0; count < size; count++)
{
if (data.size() == 0)
{
cout << "0 digit detected. " << endl;
system("PAUSE");
}else
{
//write the element in array into text file
out_file << data.size() << " " ;
cout << data.size() << " ";
}
}
out_file.close();
但是,有一些错误。例如,我输入了 1,2,3,4,5,g,它应该将数组作为 1,2,3,4,5 写入文本文件。但是,它写成 5,5,5,5,5 代替。我想知道我是否错误地使用了 push_back?任何指南将不胜感激。
提前致谢。