简单C语句编程题::编程从键盘输入圆柱体的底面半径r和高,计算并输出圆柱体的表面积和体积。
3个回答
展开全部
#include<stdio.h>,#define PI 3.1415,void main(){float r,h;printf("请输入圆柱体的底面半径和高:");scanf("%f %f",&r,&h);printf("圆柱的表面积为:%.2f\n",2*PI*r*h+2*PI*r*r);printf("圆柱的体积为:%.2f\n",PI*r*r*h)。
1.一个赋值表达式。
2.下面一个是表达式,还有一个是语句,要区分开来。可以看到一个表达式的最后加一个分号就成了一个语句,一个语句必须在最后出现分号,分号是语句中不可缺少的一部分。
3.而任何一个表达式都可以加上分号而构成语句,以下语句的作用是使i值加1。
4.这是一个语句,作用是完成x+y的操作,它是合法的,但是并不把x+y的和赋给另一变量,所以它并无实际意义。
推荐于2018-03-01
展开全部
#include<stdio.h>
#define PI 3.1415
void main()
{
float r,h;
printf("请输入圆柱体的底面半径和高:");
scanf("%f %f",&r,&h);
printf("圆柱的表面积为:%.2f\n",2*PI*r*h+2*PI*r*r);
printf("圆柱的体积为:%.2f\n",PI*r*r*h);
}
#define PI 3.1415
void main()
{
float r,h;
printf("请输入圆柱体的底面半径和高:");
scanf("%f %f",&r,&h);
printf("圆柱的表面积为:%.2f\n",2*PI*r*h+2*PI*r*r);
printf("圆柱的体积为:%.2f\n",PI*r*r*h);
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
#include<iostream.h>
void main()
{
double r,h,s,v;
cout<<"Please input the radius of the cylinder : ";
cin>>r;
cout<<"Please input the height of the cylinder : ";
cin>>h;
s=2*3.14*r*r+2*3.14*r*h;
v=3.14*r*r*h;
cout<<"The area is : "<<s<<endl;
cout<<"The valume is : "<<v<<endl;
}
void main()
{
double r,h,s,v;
cout<<"Please input the radius of the cylinder : ";
cin>>r;
cout<<"Please input the height of the cylinder : ";
cin>>h;
s=2*3.14*r*r+2*3.14*r*h;
v=3.14*r*r*h;
cout<<"The area is : "<<s<<endl;
cout<<"The valume is : "<<v<<endl;
}
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |