题解 1809: [编程基础]输入输出练习之精度控制2

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

筛选

1809C语言代码,good

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

输入输出--3.双精度控制

摘要:解题思路:双精度浮点数double(与上一题对比看)参考代码:#include<stdio.h>int main(){ double a;//双精度浮点数double; scanf("%lf",&a)……

C++输入输出控制

摘要:解题思路:注意事项:参考代码:#include<iostream>#include<iomanip>using namespace std;int main(){    double a;    ci……