1809: [编程基础]输入输出练习之精度控制2(哎呦,我真的是饿了) 摘要:注意事项: 1)双精度为double 2)格式为%lf 3)保留12位%.12lf ```c #include int main() { double a; scan…… 题解列表 2024年08月07日 0 点赞 0 评论 232 浏览 评分:9.9
编写题解 1809: [编程基础]输入输出练习之精度控制2 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ double x; cin >> x; printf(…… 题解列表 2024年07月31日 0 点赞 0 评论 53 浏览 评分:0.0
1809: [编程基础]输入输出练习之精度控制2 摘要:####代码 ```cpp #include using namespace std; int main() { double a,b; cin>>a; pri…… 题解列表 2024年02月02日 0 点赞 0 评论 162 浏览 评分:9.9
好写》好写 摘要:参考代码:#include<iostream> using namespace std; int main() { double x; cin >> x; printf(…… 题解列表 2024年01月02日 0 点赞 0 评论 302 浏览 评分:9.9
输入输出--3.双精度控制 摘要:解题思路:双精度浮点数double(与上一题对比看)参考代码:#include<stdio.h>int main(){ double a;//双精度浮点数double; scanf("%lf",&a)…… 题解列表 2023年03月23日 0 点赞 0 评论 101 浏览 评分:0.0
输入输出练习之精度控制2 摘要:解题思路:输入双精度型浮点数(double),输出精度为12位小数。注意事项:字符宽度有无要求?参考代码:#include<stdio.h>int main(){ double a = 0.0;…… 题解列表 2022年12月29日 0 点赞 0 评论 109 浏览 评分:0.0
编写题解 1809: [编程基础]输入输出练习之精度控制2 摘要:解题思路:注意事项:参考代码: double d; scanf("%lf", &d); printf("%.12f", d);…… 题解列表 2022年11月21日 0 点赞 0 评论 97 浏览 评分:0.0
输入输出练习之精度控制2 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; #include<iomanip> int main() { doubl…… 题解列表 2022年11月01日 0 点赞 0 评论 331 浏览 评分:9.9
[编程基础]输入输出练习之精度控制2 摘要:解题思路:注意事项:参考代码:print('%.12f'%float(input())) #或print(format(float(input()),'.12f'))…… 题解列表 2022年10月17日 0 点赞 0 评论 338 浏览 评分:9.9
[编程基础]输入输出练习之精度控制2(C语言) 摘要: #include int main() { double a; scanf("%lf",&a); printf("%.12f"…… 题解列表 2022年07月13日 0 点赞 0 评论 156 浏览 评分:0.0