标签:
终于如愿考上了某大学,然而距离上一次写代码已经过去了半年多…无论进什么系,程序设计都是必修课,而我终于再也没有借口继续依赖老爷车Pascal…
愉快地下载了Code::Blocks,翻开书本学起了C…//照着敲一段代码…Page 4
#include<stdio.h> #include<math.h> int main() { const double pi=4.0*atan(1.0); double r,h,s1,s2,s; scanf("%lf%lf",&r,&h); s1=pi*r*r; s2=2*pi*r*h; s=s1*2.0+s2; printf("Area = %.3lf\n",s); return 0; }
标签:
原文地址:http://www.cnblogs.com/Sky-Grey/p/4606429.html