猿问

我的VS2013程序编写完毕后按 ctrl+f5 之后那个黑色的控制台窗口闪一下就消失了。

我今天下好了VS2013的程序,打算把在慕课网上学的C语言入门课程的打印“Hello World”在上面实验一下,但是我写好程序后按Ctrl+f5后那个控制台窗口就闪了一下就消失了。代码如下:

#include<stdio.h>

int main()

{

printf("Hello World");

return 0;

}

求大神解答,本人小白,求大神别烦。



S冰L
浏览 2009回答 1
1回答

super_mb

#include <stdlib.h> #include <stdio.h> int main() {     printf("Hello World");     system("pause");     return 0; } //或者 #include <stdio.h> #include <conio.h> int main() {     printf("Hello World");     getch();     return 0; } 试试看?
随时随地看视频慕课网APP
我要回答