所以这个程序应该使用for循环收集超过7天的天气温度,然后基本上只是将它们打印回给用户,平均温度和最高记录温度。请记住,以下代码是更大程序的一部分。无论如何,问题似乎是" highest_temp1"浮点变量。当我运行程序时,它会产生某种错误代码而不是最高温度。这段代码在一个单独的源文件中进行了测试,它没有问题。
switch (choice)
{
case 3:
int n;
float temperatures [7];
float lastweektemp [7] = {12.56,8.65,7.5,10,7.9,5,8};
float highest_temp1, highest_temp2;
float accumulated_temp1, accumulated_temp2;
system("CLS");
cout << "____________Weather Data____________" << endl << endl;
for (n = 0; n<7; n++)
{
cout << "What is the temperature for Day " << n+1 << " ?" << endl;
cin >> temperatures[n];
if (highest_temp1 < temperatures [n])
{
highest_temp1 = temperatures [n];
}
if (highest_temp2 < lastweektemp [n])
{
highest_temp2 = lastweektemp [n];
}
accumulated_temp1 = accumulated_temp1 + temperatures[n];
accumulated_temp2 = accumulated_temp2 + lastweektemp [n];
}
cout << endl << " Day This Week Last Week" << endl;
for (n=0; n<7; n++)
{
cout << n+1 << temperatures[n] << lastweektemp[n] << endl;
}
system("CLS");
cout << " Weather Report" << endl;
cout << " --------------" << endl << endl;
cout << "Current Week: " << endl;
cout << "-------------" << endl;
for (n=0; n<7; n++)
{
cout << "Day " << n+1 << ": " << temperatures[n] << endl;
}
cout << endl << " Average: " << accumulated_temp1 / 7 << endl;
cout << " Highest Temperature: " << highest_temp1 << endl;
cout << "Last Week: " << endl;
cout << "----------" << endl;
for (n=0; n<7; n++)
{
cout << "Day " << n+1 << ": " << lastweektemp[n] << endl;
}
cout << endl << " Average: " << accumulated_temp2 / 7 << endl;
cout << " Highest Temperature: " << highest_temp2 << endl;
system("PAUSE");
}
本周的最高温度是24,但它是打印&#34;最高温度:3.45857e + 032&#34;
这个确切的错误代码&#39;每次我运行程序时它都会出现,它不会改变。
我是新手,因此我无法上传照片。
任何帮助将不胜感激。我在大学做了一个小任务。这是我的第一个问题,所以请轻松!!
答案 0 :(得分:0)
你没有初始化highest_temp1
(或highest_temp1
就此问题:之后我停止了寻找。)
答案 1 :(得分:0)
您尚未为变量highest_temp1指定任何值,而是将其与其他值进行比较。
基本上,在比较之前,您需要先为其指定一个值..
highest_temp1 = 10.00
(或其应包含的任何内容)
答案 2 :(得分:0)
累计温度相同,未初始化。可以通过
完成float accumulated_temp1(0);
答案 3 :(得分:0)
在使用之前初始化变量
float highest_temp1(-FLT_MAX); // -FLT_MAX insures results of first compare
float highest_temp2(-FLT_MAX); // Could use -1.0/0.0 of -INFINITY instead
float accumulated_temp1(0.0);
float accumulated_temp2(0.0);
答案 4 :(得分:-1)
对于浮点数条件使用if语句切换在浮点数的情况下不能工作,切换只能用于整数。