编亏程序,求出给定半径工的圆的面积和周长,并且输出计算结果(保留一位小数点》。半径工的值为单精度数,由用户随机输入,用浮点型数据处理
时间: 2024-02-26 10:58:02 浏览: 87
顺序结构程序设计-C语言程序实验报告.docx
好的,以下是一个可以计算圆的面积和周长的 C++ 代码:
```c++
#include <iostream>
using namespace std;
int main() {
float radius, area, circumference;
const float PI = 3.1415926;
cout << "Please enter the radius of the circle: ";
cin >> radius;
area = PI * radius * radius;
circumference = 2 * PI * radius;
cout << "The area of the circle is " << fixed << setprecision(1) << area << endl;
cout << "The circumference of the circle is " << fixed << setprecision(1) << circumference << endl;
return 0;
}
```
这个程序中,我们首先定义了三个变量,分别表示半径、面积和周长。接下来,我们定义了一个常量 PI,用来表示圆周率。然后,我们提示用户输入半径,通过 cin 语句将半径的值读取到变量 radius 中。接下来,我们使用公式计算出圆的面积和周长,并将结果存储在相应的变量中。最后,我们使用 cout 语句输出计算结果,其中 fixed 和 setprecision(1) 用来保留一位小数点。
希望能对您有所帮助。
阅读全文