【程序填空】题目:计算矩形的面积,请填空。 -------------------------------------------------------* # include <iostream.h> /**********SPACE*********/ float mul(【1】) { return (a*b); } int main() { float x, y; cin>>x>>y; /**********SPACE*********/ cout<<【2】; }
时间: 2023-07-06 18:43:30 浏览: 64
矩形的面积计算
题目中的空白处应填写:
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);
}
```
阅读全文