c语言中int 和double 型读取和输出的差异
001、
[root@PC1 test]# ls test.c [root@PC1 test]# cat test.c ## 测试程序 #include <stdio.h> int main(void) { int i; printf("i = "); scanf("%d", &i); //读取和输出int型,均用%d printf("i = %d\n", i); double j; printf("j = "); scanf("%lf", &j); //读取和输出double型,读取云哥%lf, 输出用%f printf("j = %f\n", j); return 0; } [root@PC1 test]# gcc test.c -o kkk ## 编译 [root@PC1 test]# ls kkk test.c [root@PC1 test]# ./kkk ## 执行 i = 87 i = 87 j = 45 j = 45.000000
。