你可以在程序
1 #include "stdio.h"
2 main()
3 {
4 int a;
5 printf("please input the data:");
6 scanf("%d",&a);
7 printf("%d\n",a);
8
9 }
中第八行加入getch();这个句子是在你运行完程序后等待一个字符的长度
,这样你就可以直接观察到程序的执行结果
1 #include "stdio.h"
2 main()
3 {
4 int a;
5 printf("please input the data:");
6 scanf("%d",&a);
7 printf("%d\n",a);
8
9 }
中第八行加入getch();这个句子是在你运行完程序后等待一个字符的长度
,这样你就可以直接观察到程序的执行结果