1. 程式人生 > >第一期訓練題第七題

第一期訓練題第七題

問題連結:https://vjudge.net/problem/hdu-2002

程式說明:巨集定義PI的值,用while語句實現多組資料輸入,用setprecision設定精度。

AC程式碼:

#include<iomanip>
#include<iostream>
using namespace std;
#define  PI    3.1415927
#define  v(r)   PI*r*r*r
int main()
{
     double   r,V;
     while(cin>>r)
     {
         V=(4*v(r))/3;
         cout<<fixed<<setprecision(3)<<V<<endl;
     }
     return 0;
}