题解 1203: 多输入输出练习2

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

筛选

多输入输出练习2

摘要:解题思路:注意事项:参考代码:#include<stdio.h> #define PI 3.1415 int main(){ double a,b,c; scanf("%lf",&a); ……

Manchester-【多输入输出练习2】

摘要:#### 解题思路: 输入半径r 输出圆的面积,保留6位小数 注意根据示例结果 PI 定义为3.1415 #### 参考代码: ```c #includ……

注意Π的取值

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#define pi 3.1415int main(){    double t,c;    int a;    scanf("%d",……

多输入输出练习-错误的看这里

摘要:解题思路:输入个数n,将n用于循环的条件中,循环时一边输入,一边将由输入的半径值求得的面积存入数组,最后统一输出注意事项:要注意的就是pi取3.1415,题目不说,很坑人参考代码:#include<s……

多输入输出练习2

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