我不知道我的代碼有什麼問題。我創建了兩個函數,其中一個顯示問候消息,另一個函數完成一個簡單的計算。函數不帶1個參數
#include "stdafx.h"
#include <iostream>
#include <Windows.h>
using namespace std;
void greetings();
int total();
int main()
{
void greetings();
int num1, num2, sum;
cout<<"Enter a number to calculate : ";
cin>>num1;
cout<<"Enter another number to add : ";
cin>>num2;
sum = num1 + num2;
cout<<"The total number is "<<total(sum)<<endl;
system("PAUSE");
return 0;
}
/*Every function is down here*/
void greetings(){
cout<<"Welcome to the function 5"<<endl;
cout<<"Here we will try to call many function as possible"<<endl;
}
int total(int a, int b){
return a + b;
}
我收到此錯誤信息:
函數不接受1個參數
'Total'需要兩個參數,你只提供一個 – MotKohn
不相關的錯誤,但主要的'內() ','void greetings();'應該只是'greetings();'而不是。 –