题解 1173: 计算球体积

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

筛选

编写题解 1173: 计算球体积

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

1173: 计算球体积

摘要:解题思路:先进行一个宏定义,然后,再在一个while(scanf("%f",&a)!=EOF)中进行多组输入,最后,在while循环中输出。注意事项:参考代码:#include<stdio.h>#de……

题解 1173: 计算球体积

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

编写题解 1173: 计算球体积

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

计算球体积优质题解

摘要:2021-11-04解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>#define pa 3.1415926525int main(){   doubl……

计算球的体积,简单易懂(C++)

摘要:解题思路:通过球的体积公式求解        注意事项:基础知识的应用参考代码:#include<stdio.h>int main(){ double r,v,a=3.14159; while(sca……