C++ HW4-3 for WallPower
設計一程式,內含計算球體體積函式(公式:(4π𝑟^3)/3)與表面積函式(公式:4𝜋𝑟^2)。輸入球體半徑後藉由呼叫函式求出體積與表面積,其中宣告 pi=3.14159 為全域的 const 常數。
參考輸出如下圖。
#includeusing namespace std; const double pi = 3.14159; int main() { double r; cout << "請輸入球體半徑:"; cin >> r; cout << "球體體積:" << (4 * pi * r *r *r) / 3 << endl; cout << "球體表面積:" << (4 * pi * r *r) << endl; system("pause"); return 0; }
留言
張貼留言