hdu_2002_计算球体积_刷之

来源:互联网 发布:软件开发管理平台 编辑:程序博客网 时间:2024/06/12 01:12

http://acm.hdu.edu.cn/showproblem.php?pid=2002

计算球体积

Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 37175    Accepted Submission(s): 14388


Problem Description
根据输入的半径值,计算球的体积。
 

Input
输入数据有多组,每组占一行,每行包括一个实数,表示球的半径。
 

Output
输出对应的球的体积,对于每组输入数据,输出一行,计算结果保留三位小数。
 

Sample Input
11.5
 

Sample Output
4.18914.137
Hint
#define PI 3.1415927
 
      1. #include<iostream>
      2. #include<stdio.h>
      3. #define PI 3.1415927
      4. using namespace std;
      5. int main()
      6. {
      7. double r;
      8. while(cin>>r)
      9. {
      10. printf("%.3f\n",4*PI*r*r*r/3);
      11. }
      12. return 0;
      13. }