我对C ++比较陌生,我的教授给了我一个我似乎无法弄清楚的任务。
我们应该编写可以读取文件并将值打印到屏幕的函数。然后我们应该能够从文件中打印出最大的值。这听起来很简单,但我似乎无法让它工作。
它编译,但我把它作为我的输出:
0023F908-858993460-858993460-858993460-858993460-858993460-858993460-858993460-8
58993460-858993460-858993460-858993460-858993460-858993460-858993460-858993460-8
58993460-858993460-858993460-858993460-8589934600023F908-858993460-858993460-858
993460-858993460-858993460The largest value is 0
Press any key to continue . . .
任何建议都将不胜感激!
这是文件包含的内容:
4 5
3 1 4 1 5
2 3 6 7 1
7 8 8 8 8
9 8 7 6 5
到目前为止,这就是我所拥有的:
void printValue( const ChartType, int, int);
int main ()
{
ChartType chart;
int rowsUsed;
int colsUsed;
ifstream dataIn;
dataIn.open("Chart.txt");
GetChart(dataIn, chart, rowsUsed, colsUsed);
PrintChart(chart, rowsUsed, colsUsed);
printValue(chart, rowsUsed, colsUsed);
return 0;
}
void GetChart(ifstream& data, ChartType chart, int& rowsUsed, int& colsUsed)
{
int tempVariable;
data >> rowsUsed >> colsUsed;
for (int row = 0; row < rowsUsed; row++)
for (int col = 0; col < colsUsed; col++)
data >> chart[4][5];
data >> tempVariable;
chart[rowsUsed][colsUsed] = tempVariable;
}
void PrintChart( const ChartType chart, int rowsUsed, int colsUsed)
{
cout << chart[rowsUsed];
for (int row = 0; row < rowsUsed; row++)
{
for (int col = 0; col < colsUsed; col++)
cout << chart[row][col];
}
}
void printValue( const ChartType chart, int rowsUsed, int colsUsed)
{
int largest = 0;
int row = 0;
int col = 0;
cout << chart[rowsUsed];
for ( ; row < rowsUsed; row++)
{
for ( ; col < colsUsed; col++)
cout << chart[row][col];
if (chart[row][col] > largest)
largest = chart[row][col];
}
cout << "The largest value is " << largest << endl;
}
答案 0 :(得分:2)
据我所知,GetChart
函数是错误的。
试试这个,
void GetChart(ifstream& data, ChartType chart, int& rowsUsed, int& colsUsed)
{
data >> rowsUsed >> colsUsed;
for (int row=0; row<rowsUsed; ++row)
for (int col=0; col<colsUsed; ++col)
data >> chart[row][col];
}