多输入输出练习2 (C语言代码) 摘要:#include <stdio.h>#define PI 3.1415int main(){ int i,n; double r,s; while(scanf("%d",&n)…… 题解列表 2018年02月26日 0 点赞 0 评论 853 浏览 评分:0.0
注意a的取值。 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<iomanip>using namespace std;int main(){ …… 题解列表 2025年10月16日 0 点赞 0 评论 126 浏览 评分:0.0
多输入输出练习2(pai = 3.1415) 摘要:解题思路:模拟注意事项:pai = 3.1415参考代码:#include<iostream>#include<iomanip>usingnamespace…… 题解列表 2025年02月03日 0 点赞 0 评论 266 浏览 评分:0.0
注意Π的取值 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#define pi 3.1415int main(){ double t,c; int a; scanf("%d",…… 题解列表 2024年11月22日 0 点赞 0 评论 249 浏览 评分:0.0
多输入输出练习2(圆周率为3.1415) 摘要:参考代码: ```c #include # define PI 3.1415 int main() { int n; scanf("%d",&n); double r; fo…… 题解列表 2023年11月16日 0 点赞 0 评论 312 浏览 评分:0.0
多输入输出练习-错误的看这里 摘要:解题思路:输入个数n,将n用于循环的条件中,循环时一边输入,一边将由输入的半径值求得的面积存入数组,最后统一输出注意事项:要注意的就是pi取3.1415,题目不说,很坑人参考代码:#include<s…… 题解列表 2023年01月10日 0 点赞 0 评论 256 浏览 评分:0.0
多输入输出练习2 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#define PI 3.1415int main(){ int i,n; double r,s; scanf(…… 题解列表 2023年01月06日 0 点赞 0 评论 229 浏览 评分:0.0
题解 1203: 多输入输出练习2 摘要:解题思路:一开始的pi根据按照M_PI,发现于题目输出不符合,试着降低pi的精确度注意事项:参考代码:#include<iostream> #include<iomanip> #include<…… 题解列表 2022年04月08日 0 点赞 1 评论 342 浏览 评分:0.0
编写题解 1203: 多输入输出练习2 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<math.h>#include <iomanip>#define PI 3.1415using namespace …… 题解列表 2022年03月28日 0 点赞 0 评论 280 浏览 评分:0.0
Hifipsysta-1203-多输入输出练习2(C++代码)不能用cmath中的M_PI 摘要:```cpp #include #include using namespace std; const double PI=3.1415; double circle_area(doub…… 题解列表 2022年02月05日 0 点赞 0 评论 174 浏览 评分:0.0