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

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

筛选

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

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

输入输出练习之精度控制2

摘要:解题思路:输入双精度型浮点数(double),输出精度为12位小数。注意事项:字符宽度有无要求?参考代码:#include<stdio.h>int main(){    double a = 0.0;……

1809C语言代码,good

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

简单代码易理解

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