控制台不使用C ++(Windows 8)使用getch()保持打开状态

时间:2014-10-15 04:51:12

标签: c++ console

我是C ++的新手,无法弄清楚为什么我的控制台在执行期间不会保持打开状态。我只是在修修补补,但要随心所欲地将坏习惯钉在十字架上。请帮忙:

#include <stdio.h>
#include <conio.h>

int main()
{
    printf("quantity\tCost\tTotal\n");
    printf("\a\a\a\a\aSkip a few lines, and beep ");
    printf("%s %c.", "You are kicking butt learning", 'C');

    getche();

    return 0;
}

1 个答案:

答案 0 :(得分:0)

使用system("pause"); 显示消息press any key to continue...并等待您。