题目:计算矩形的面积,请填空。 -------------------------------------------------------* # include <iostream.h> /**********SPACE*********/ float mul(【1】) { return (a*b); } int main() { float x, y; cin>>x>>y; /**********SPACE*********/ cout<<【2】; }
时间: 2023-07-06 16:43:23 浏览: 111
以下是填空后的程序:
```
#include <iostream>
using namespace std;
float mul(float a, float b)
{
return (a*b);
}
int main()
{
float x, y;
cin>>x>>y;
cout<<mul(x, y);
return 0;
}
```
程序说明:
该程序用于计算矩形的面积,使用了一个mul函数来计算面积。主函数中输入矩形的长和宽,然后调用mul函数计算面积,最终输出结果。mul函数中使用了两个参数a和b来表示矩形的长和宽,计算得到的结果即为矩形的面积。
相关问题
. (填空题) 【程序填空】题目:计算矩形的面积,请填空。 -------------------------------------------------------* # include <iostream.h> /**********SPACE*********/ float mul(【1】) { return (a*b); } int main() { float x, y; cin>>x>>y; /*******
SPACE:float a, b; /*******/
```cpp
#include <iostream.h>
float mul(float a, float b) // 在括号内填入 float a, float b
{
return (a * b);
}
int main()
{
float x, y;
cin >> x >> y;
cout << mul(x, y) << endl;
return 0;
}
```
【程序填空】题目:计算矩形的面积,请填空。 -------------------------------------------------------* # include <iostream.h> /**********SPACE*********/ float mul(【1】) { return (a*b); } int main() { float x, y; cin>>x>>y; /**********SPACE*********/ cout<<【2】; }
题目中的空白处应填写:
1. float a, float b
2. mul(x, y)
完整代码如下:
```c++
# include <iostream.h>
float mul(float a, float b)
{
return (a*b);
}
int main()
{
float x, y;
cin >> x >> y;
cout << mul(x, y);
}
```
阅读全文