Problem O: 零起点学算法10——求圆柱体的表面积

2021-06-17 19:03

阅读:332

标签:面积   main   turn   scanf   return   3.1   highlight   print   amp   

#include
int main()
{
	float r,h,pi;
	pi=3.1415926;
	scanf("%f %f",&r,&h);
	printf("Area=""%.3f",2*pi*r*r+2*pi*r*h);
	return 0;
} 

  

Problem O: 零起点学算法10——求圆柱体的表面积

标签:面积   main   turn   scanf   return   3.1   highlight   print   amp   

原文地址:https://www.cnblogs.com/chenlong991223/p/9720035.html


评论


亲,登录后才可以留言!