這是我第一年學習I.T.和c + +所以我沒有太多的任何知識在c + +。問題是關於函數調用。需要幫助函數調用
函數標題是:
bool insure(int age, bool smoker)
我的任務是記下正確的函數調用,並聲明所有的,我將在調用語句中使用的變量。
到目前爲止,這是我想出來的:
#include <iostream>
using namespace std;
bool insure(int age, bool smokers)
{
bool ret;
}
int main()
{
int age;
bool isSmoker;
bool ret;
cout << "Enter your age: ";
cin >> age;
ret = insure(age, isSmoker);
return 0;
}
我想知道,如果這個計劃是正確的,或者如果我做錯了。在此先感謝
當你運行它時發生了什麼? – gregg 2011-03-31 16:17:47