解题思路:
注意事项:
参考代码:
#include<iostream> using namespace std; #include<iomanip> int main() { float r,a; while(cin>>r) { cout<<fixed<<setprecision(3); cout<<4.0/3*3.1415*r*r*r<<endl; } return 0; }
0.0分
1 人评分
【绝对值排序】 (C++代码)浏览:720 |
c primer plus 第十二章 12.1小节浏览:400 |
蛇行矩阵 (C语言代码)浏览:606 |
字符逆序 (C语言代码)浏览:506 |
关于float,double变量的几点说明浏览:1926 |
矩阵乘方 (C语言代码)浏览:1079 |
Tom数 (C语言代码)浏览:581 |
字符逆序 (C语言代码)浏览:675 |
上车人数 (C语言代码)浏览:753 |
生日日数 (C语言代码)浏览:1575 |