C++从键盘上输入一个整数作为半径,求以它为半径的圆的面积和周长。

//从键盘上输入一个整数作为半径,求以它为半径的圆的面积和周长。
#include
using namespace std;

int main()
{
const double PI=3.14159265;
double radius;
double circumference;
double area;
cout<<"enter radius:"; cin>>radius;
circumference=2*PI*radius;
area =PI*radius*radius;
cout<<"circumference of circle of radius"<

C++从键盘上输入一个整数作为半径,求以它为半径的圆的面积和周长。最先出现在Python成神之路

版权声明:
作者:dingding
链接:https://www.techfm.club/p/29300.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>