001、读入整型数据
[root@PC1 test]# ls test.c [root@PC1 test]# cat test.c ## 测试脚本 #include <stdio.h>int main(void) {int i; //声明整型变量puts("please input an integer.");printf("input an integer i:"); scanf("%d", &i); // 读入整型数据;真正起作用的部分是 scanf("%d", &i);printf("i = %d\n", i); // 输出读取结果return 0; } [root@PC1 test]# gcc test.c -o kkk ## gcc编译,生成可执行脚本kkk [root@PC1 test]# ls kkk test.c [root@PC1 test]# ./kkk ## 测试读取结果 please input an integer. input an integer i:876 i = 876
002、读入浮点型数据