多输入输出练习2(Python) 摘要:```python n=int(input()) pi=3.1415 t=[] for i in range(n): r=float(input()) #循环输入半径 s=…… 题解列表 2021年12月10日 0 点赞 0 评论 240 浏览 评分:8.0
多输入输出练习2 摘要:解题思路:先用宏定义定义一个p,然后定义变量n,计数器k,将k放到while()循环中判断读入半径的个数。注意事项:不要用float 去定义s,a,不然容易出现精度问题,最好用double定义变量。参…… 题解列表 2021年12月07日 0 点赞 0 评论 116 浏览 评分:0.0
多输入输出练习2 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #define PI 3.1415 int main(){ double a,b,c; scanf("%lf",&a); …… 题解列表 2021年11月08日 0 点赞 0 评论 311 浏览 评分:9.9
多输入输出练习2-题解(C)PI取3.1415、半径和面积全部double,不过你打我! 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<string.h> #include <math.h> #include <stdlib.h> #defin…… 题解列表 2021年02月02日 0 点赞 0 评论 215 浏览 评分:2.0
Manchester-【多输入输出练习2】 摘要:#### 解题思路: 输入半径r 输出圆的面积,保留6位小数 注意根据示例结果 PI 定义为3.1415 #### 参考代码: ```c #includ…… 题解列表 2020年04月19日 0 点赞 0 评论 471 浏览 评分:9.9
多输入输出练习2-题解(C语言代码) 摘要:/*啥题目,我服了,我精度取太多居然错误,我傻了,我pi的值取3.1415926结果WA,后来取3.1415结果AC了。无话可说啊*/ #include #define PI 3.1415 …… 题解列表 2020年02月20日 0 点赞 0 评论 273 浏览 评分:0.0
Kanna-多输入输出练习2--C++ 摘要:比较简单的写法,但C++输出中需要用到位数函数--[setprecision(n)函数用法](https://www.cnblogs.com/Kanna/p/12152783.html "setpre…… 题解列表 2020年01月15日 0 点赞 0 评论 322 浏览 评分:9.9
多输入输出练习2-题解(C++代码)【注意精度】 摘要:### 多输入输出练习2-题解 注意精度使用 double 而不是 float ```cpp #include #include "iomanip" using namespace st…… 题解列表 2019年12月11日 0 点赞 0 评论 661 浏览 评分:9.9
多输入输出练习2-题解(C语言代码)值得参考 摘要: #include #define PI 3.1415926 int main1001() { double r; int n; …… 题解列表 2019年12月01日 0 点赞 0 评论 871 浏览 评分:9.9
多输入输出练习2 (C语言代码) 摘要:解题思路:注意事项:没啥别的,注意pi是3.1415,保留4位。参考代码:#include<stdio.h>#define pi 3.1415int main(){ int n,i; sc…… 题解列表 2019年06月03日 0 点赞 0 评论 274 浏览 评分:0.0