我是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;
}
答案 0 :(得分:0)
使用system("pause");
显示消息press any key to continue...
并等待您。