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

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

筛选

1808:输入输出练习之精度控制1

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){float a;  //单精度scanf("%f",&a);printf("%0.3f",a);  小数点后3位 ……

精度控制到小数点后三位

摘要:解题思路:不需要思路注意事项:会用就好参考代码:#include<iostream>#include<iomanip>using namespace std;int main(){ double i;……

简单输出易懂

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ float n; scanf("%f", &n); printf("%.3f", n);}……

xxs写的题解

摘要:解题思路:无注意事项:无参考代码:#include<iostream>using namespace std;int main(){  float a;  cin>>a;  printf("%.3f"……

精度控制(C语言讲解)

摘要:解题思路:这是格式化输入输出内容,熟知格式即可。格式化输出printf为:%[输出最小宽度][.精度][长度] 类型例%5.2f表示输出宽度为5,包含两位小数的浮点类型补充:格式化输入scanf格式字……

输入输出练习

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