我正在研究一个程序,用于从文件中读取数据,处理数据并写入另一个文件。我们需要在程序中使用两个函数,并且我认为由于函数的某些错误,我的程序无法正常运行。
首先,让我描述输入文件,然后我将添加我的代码。输入文件以标记号开头,让程序知道要读取的行数。每个后续行由12个数字组成,表示YYYYMMDDHHMM形式的日期和Xtemp形式的温度读数,其中x是c或f(例如C17.5或F64.12)。我们的输出应该将临时值转换为摄氏度,如果它们还没有,那么每一行应该以“17.5 C ---记录于04/12/2009”的格式出现,依此类推每行。
到目前为止,这是我的代码。就像我说的那样,我认为问题出在功能上。
#include <iostream>
#include <fstream>
#include <iomanip>
#include <cstdlib>
using namespace std;
void timeConverter(char timeStamp[]);
float tempConverter(float);
int main()
{
ifstream fin;
ofstream fout;
int endcycler, cycler;
char timeStamp[11];
char tempUnit;
float tempData;
fin.open("aquarenadata.dat");
if (!fin)
{
cout<<"Error opening input file"<<endl;
system("pause");
return -1;
}
fout.open("formatteddata.dat");
fin >> endcycler;
cycler = 0;
while (cycler < endcycler)
{
fin >> timeStamp;
fin >> tempUnit;
fin >> tempData;
if (tempUnit == 'C' || tempUnit == 'c')
cout << tempData << " C --- recorded on ";
else if (tempUnit == 'F' || tempUnit == 'f')
{
tempData = tempConverter(tempData);
cout << tempData << " C --- recorded on ";
}
else
{
cout <<"Invalid temperature scale"<<endl;
system("pause");
return -2;
}
void timeConverter();
cycler++;
}
fin.close();
fout.close();
system("pause");
return 0;
}
void timeConverter (char timeStamp[])
{
cout<<timeStamp[4]<<timeStamp[5]<< "/" <<timeStamp[6]<<timeStamp[7]<< "/"<<timeStamp[0]<<timeStamp[1]<<timeStamp[2]<<timeStamp[3]<< " at " <<timeStamp[8]<<timeStamp[9]<<timeStamp[10]<<timeStamp[11]<<endl;
}
float tempConverter (float tempData)
{
float result;
result = (tempData - 32) * (5 / 9);
return result;
}
答案 0 :(得分:1)
就显示日期的问题而言,可能是您实际上没有调用timeConverter函数。
而不是
void timeConverter();
尝试
timeConverter(timestamp);
您可能还需要确保输入格式正确,即时间戳实际上至少为8长
对于转换中的错误,如果您为某些输入提供实际返回的值,将会更容易。