正确做法:
#include
#include
usingnamespace std;
float area(float a,float b);// 声明函数
int main()
{
float length,width;
length=10.0;
width=5.0;
float areas=area(length,width);// 调用函数
cout << areas <<endl;
return0;
}
// 定义函数
float area(float a,float b){
return a*b;
}
运行结果:
50