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

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

筛选

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

摘要:解题思路:没啥好说的了,看得懂就行,看不懂单独问。注意事项:参考代码:#include<stdio.h>int main(){  char c;   int i;   float b;double a……

1810cyuyanc语言因 niu

摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main (){ char a;int b;float c;double x; scanf ("%c %d %f %lf",&……

简单代码易理解

摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ char a; int b; float c; double d; scanf("%c %d %f %lf",……