求指教,代码问题
下面代码求指教/* 本程序演示scanf()函数的简单使用*/
#include <stdio.h>
void main(void)
{
int i_number=0;
printf("\nPlease input a number:");
scanf("%d",&i_number);
printf("\nI got the number you inputed,it is %d",i_number);
}
代码编译运行之后,首先提示用户
Please input number:I (I代表闪烁的光标)
,我随便出入一个数字,文件就直接关掉了。这是什么情况
正常程序输出结果应该是,例如输入198,按回车
I got the number you input,it is 198