我是一名初學者,對於將函數調用到程序的主要部分有一點問題。將函數插入主要部分
#include <iostream>
#include<cmath>
int getAbsProd(int a, int b)
{
cout<<"Insert integer: "<<endl;
cin>>a;
cout<<"Insert another integer: "<<endl;
cin>>b;
cout<<"The absolute value of the multiplication is: "<<abs(a*b)<<endl;
return abs(a*b);
}
int main()
{
cout<<getAbsProd();
return 0;
}
我正在使用codeblocks,無法調用math.h,它建議調用cmath的地方。
變化'COUT << getAbsProd()''到COUT << getAbsProd(1,2)'或類似的東西... –
移動了''的聲明和'b'內部功能。像'int getAbsProd(){int a,b; ''。 – NikolayKondratyev
noob001,如果我的答案奏效,請接受答案,以便這個問題將被關閉 –