我正在写一个简单的程序来计算热量指数。当我运行它时,应检查Temp是华氏度还是Celcius,然后输出热量指数。如果温度低于80度,则应输出“无热量指数”。现在它输出“没有所有输入的热量指数。
之前,它正在输出-40。为了一切。找出这里出了什么问题很麻烦。
#include <iostream>
#include <string>
using namespace std;
void calcheatIndex (float temp, float humidity); // function to execute HI formula
void inputWeather (float temp, float humidity); // function to get data from user
bool moreTemps (); // ask if user wants to calculate more
void temptype (); // F or C
int main () {
float temp = 0;
float humidity = 0;
float heatIndex;
inputWeather(temp, humidity);
calcheatIndex (temp, humidity);
return 0;
}
void inputWeather(float temp, float humidity) {
cout << "Enter temperature: ";
cin >> temp;
cout << "Enter humidity: ";
cin >> humidity;
while (humidity <= 0) {
cout << "Humidity should be greater than 0. ";
cin >> humidity;
}
}
bool moreTemps () {
string answer;
cout << "Calculate another (Y/N) ? ";
cin >> answer;
while (answer != "Y" && answer != "y"
&& answer != "N" && answer != "n") {
cout << "Answer Y/N : ";
cin >> answer;
}
if (answer == "Y" || answer == "y") {
return true;
}
return false;
}
void calcheatIndex (float temp, float humidity) {
const double c1 = -42.379;
const double c2 = 2.04901523;
const double c3 = 10.14333127;
const double c4 = -.22475541;
const double c5 = -0.00683783;
const double c6 = -0.05481717;
const double c7 = 0.00122874;
const double c8 = 0.00085282;
const double c9 = -0.00000199;
double heatIndex = c1 + (c2 * temp) +
(c3 * humidity) +
(c4 * temp*humidity) +
(c5 * (temp*temp)) +
(c6 * (humidity * humidity)) +
(c7 * (temp * temp) * humidity) +
(c8 * temp * (humidity * humidity)) +
(c9 * (temp * temp) * (humidity * humidity));
string type;
cout << "Is this temperature Fehrenhiet or Celcius (F/C) : ";
cin >> type;
while (type != "F" && type != "f" &&
type != "C" & type != "c") {
cout << "Enter F or C :";
cin >> type;
}
if ((type == "F" || type == "f") && temp >= 80.0) { // Fahrenheit and over 80`
cout << heatIndex;
} else if ((type == "C" || type == "c") && temp >= 26.67) {
heatIndex = heatIndex * 9.0 / 5.0 + 32;
cout << heatIndex;
} else {
cout << "no heatIndex" ;
}
}
答案 0 :(得分:3)
问题在于inputWeather
正在按价值来论证:
void inputWeather(float temp, float humidity) {
这意味着当函数更改两个变量时,更改不会传播给调用者。因此,始终调用calcheatIndex
,temp
和humidity
都设置为零。
解决这个问题的一种方法是通过参考来获取参数:
void inputWeather(float& temp, float& humidity) {
(别忘了也改变原型。)
答案 1 :(得分:2)
C和C ++在调用方法时默认为按值传递(而不是通过引用传递)。
在按值传递时,调用站点上的值的副本将传递给函数中的新变量;函数的参数形成一个新的范围---一个具有相同名称的新变量。由于它是一个新变量,temp
中的humidity
和inputWeather
的修改不会反映在main
方法的变量中。因此温度和湿度为零,这意味着没有热指数。 (之前,也许你没有初始化温度和湿度,所以它们的值或多或少是随机的。)
在C ++中,您可以通过签名轻松地将函数更改为引用传递:
void inputWeather(float &temp, float &humidity) {
这告诉语言使temp
内的humidity
和inputWeather
变量引用与在调用站点指定为参数的变量相同的内存位置,以便对函数中的那些变量的修改将在调用者的变量中可见。
有关差异的详细信息,请参阅What's the difference between passing by reference vs. passing by value?