多输入输出练习2-题解(C)PI取3.1415、半径和面积全部double,不过你打我! 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<string.h> #include <math.h> #include <stdlib.h> #defin…… 题解列表 2021年02月02日 0 点赞 0 评论 219 浏览 评分:2.0
多输入输出练习2 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#define PI 3.1415int main(){ double r; int n; scanf("%d",&n); while(…… 题解列表 2019年05月01日 0 点赞 0 评论 314 浏览 评分:2.0
多输入输出练习2 (C语言代码) 摘要:解题思路:注意事项:没啥别的,注意pi是3.1415,保留4位。参考代码:#include<stdio.h>#define pi 3.1415int main(){ int n,i; sc…… 题解列表 2019年06月03日 0 点赞 0 评论 282 浏览 评分:0.0
多输入输出练习2 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cstdio> #include<cmath> #include<string> #include<alg…… 题解列表 2019年04月04日 0 点赞 0 评论 330 浏览 评分:0.0
多输入输出练习-错误的看这里 摘要:解题思路:输入个数n,将n用于循环的条件中,循环时一边输入,一边将由输入的半径值求得的面积存入数组,最后统一输出注意事项:要注意的就是pi取3.1415,题目不说,很坑人参考代码:#include<s…… 题解列表 2023年01月10日 0 点赞 0 评论 68 浏览 评分:0.0
1203: 多输入输出练习2 摘要:#include <bits/stdc++.h> using namespace std; int main(){ const double PI = 3.1415;//PI要取到四…… 题解列表 2022年01月01日 0 点赞 0 评论 216 浏览 评分:0.0
多输入输出练习2-题解(C语言代码) 摘要:/*啥题目,我服了,我精度取太多居然错误,我傻了,我pi的值取3.1415926结果WA,后来取3.1415结果AC了。无话可说啊*/ #include #define PI 3.1415 …… 题解列表 2020年02月20日 0 点赞 0 评论 284 浏览 评分:0.0
注意Π的取值 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#define pi 3.1415int main(){ double t,c; int a; scanf("%d",…… 题解列表 2024年11月22日 0 点赞 0 评论 61 浏览 评分:0.0
多输入输出练习2 (C++代码) 摘要:解题思路:注意事项:参考代码:#include <iostream> #include<cstdio> #include<cmath> using namespace std; const f…… 题解列表 2018年05月17日 0 点赞 0 评论 1162 浏览 评分:0.0
多输入输出练习2 (C语言代码) 摘要:解题思路:使用动态申请的数组保存数据注意事项:参考代码:#include <stdio.h> #include <stdlib.h> #define PI 3.1415 int main…… 题解列表 2018年12月24日 1 点赞 0 评论 460 浏览 评分:0.0