試圖做一個簡單的函數返回存儲在輔助功能在DEV-C++的主要功能的價值,我不知道爲什麼它不工作:/麻煩具有多種功能和返回值
我真的覺得它應該正確運行,但是當我編譯並運行程序時,它不會要求輸入一個值,並在0是輸入值時顯示0和語句附帶的語句。
// This program asks user to enter IQ score and then displays a message
#include<iostream>
using namespace std;
double getIQ();
int main()
{
double iq = 0.0;
getIQ();
if (iq > 120)
{
cout << "You are a genius" << endl;
}
else
{
cout << "You don't need a high IQ to be a successful person" << endl;
}
system("pause");
return 0;
}
double getIQ()
{
double iq = 0.0;
cout << "Enter IQ score: " << iq << endl;
return iq;
}
'cout'只輸出東西。使用'cin'輸入內容。您也不使用函數的返回值。你只需執行它,扔掉智商。 – chris 2013-03-20 02:21:44
'cout'不讀取輸入:http://www.cplusplus.com/reference/iostream/cin/ – 2013-03-20 02:21:53