在VS中用getchar();不暂停怎么办
# include <stdio.h>int main(void)
{
int a, b;
scanf_s ("%d %d" , &a, &b);
if (a > b)
printf ("a大于b\n");
else
printf ("b大于a\n");
getchar();
return 0;
}
怎么办?????????????
2016-03-12 22:33
2016-03-12 23:00
2016-03-12 23:01
2016-03-13 17:08
2016-03-13 19:41
2016-03-13 19:43
MS的VS不用pause用什么
2016-03-13 21:41
2016-03-14 13:46
2016-03-14 17:32
2016-03-14 19:47