题解 1173: 计算球体积

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

1173 计算球的体积

摘要:解题思路:注意事项:参考代码:#include<iostream>#include<cmath>using namespace std;#define PI 3.1415926int main(){ ……

计算球体积

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#define PI 3.1415#include<math.h>int main(){    double r,v;    while……

求球的体积

摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){    double r,v;    while(scanf("%lf",&r)!=EOF)    {    ……

编写题解 1173: 计算球体积

摘要:解题思路:注意事项:参考代码:while True:     try:         r=float(input())         print(&#39;%.3f&#39;%((4/3)*……

计算球体积(C++代码)

摘要:参考代码:#include <iostream>#include <cmath>  // 包含cmath头文件来使用pow函数和M_PI常量#include<iomanip>using namespa……

1173一行解(Python)

摘要:解题思路:注意事项:参考代码:import mathimport sysfor line in sys.stdin:print(&#39;{:.2f}&#39;.format((4/3)*math.p……