Why is the console window closing immediately once displayed my output?

前端 未结 21 2525
死守一世寂寞
死守一世寂寞 2020-11-22 03:45

I\'m studying C# by following the guides in MSDN.

Now, I just tried the Example 1 (here is the link to MSDN), and I\'ve encountered an i

21条回答
  •  刺人心
    刺人心 (楼主)
    2020-11-22 04:14

    Add the following before the return 0:

    system("PAUSE");  
    

    This prints a line to hit a key to close the window. It will keep the window up until you hit the enter key. I have my students add it to all their programs.

提交回复
热议问题