这已经给我带来了一段时间的麻烦,而且我对代码所做的任何调整似乎都没有产生任何影响。我试图在从文件中读取的一行文本中定位数字,并将所述数字存储到另一个字符串中以供以后使用。最初的复制似乎是成功的,但是当尝试输出存储数字的字符串时,唯一的输出是一个空行。
这是代码和包含的头文件:
#include<iostream>
#include<string>
#include<fstream>
#include<cctype>
using namespace std;
int main()
{
ifstream inFile;
string temp;
short count = 0;
char fileName[20];
string info1;
cout << "Enter the name of the file to be used: " << endl;
cin >> fileName;
inFile.open(fileName);
if(!inFile)
{
cout << "Error opening file." << endl;
}
else
{
getline(inFile, info1);
cout << info1 << endl;
for(short i = 0; i < info1.length(); i++)
{
if(isdigit(info1[i]))
{
temp[count] = info1[i];
cout << temp[count] << endl;
count++;
}
}
cout << temp << endl;
}
inFile.close();
return 0;
}
输出如下:
Enter the name of the file to be used:
input.txt
POPULATION SIZE: 30
3
0
显然,它没有按预期输出温度。任何帮助或建议将不胜感激。