示例...
int main()
{
int i,j,k;
printf("Enter two integers: \n");
scanf("%d",&i);
scanf("%d",&j);
k = i + j;
printf("Adding %d and %d gives %d.\n", i, j, k);
return 0;
}
在有人链接到此之前... Programs with the scanf not working properly in NetBeans
使用Netbeans的内部终端运行此代码是否真的不可能?我试着四处寻找,有人说在printf之后放一个flush语句。它仍然没有用。
另外,我已经有0的回报;其他答案(上面的链接)中有说明。