意思就是比如我做一個系統有多個功能選項 輸入選擇其中一個功能後跳到那個功能的界面 怎麼做到的呢 是用cout《endl;刷出來的麼?求大神指導
用system("cls");清屏,需要先包含stdlib.h文件。
// ConsoleApplication1.cpp: 主項目文件。
#include "stdafx.h"
#include "iostream"
#include "stdlib.h"
int main(void)
{
std::cout << "1. Hello world!" << std::endl;
std::cout << "2. How are you?" << std::endl;
std::cout << "Enter your choice please:" << std::endl;
int i;
std::cin >> i;
if (i == 1) {
system("cls");
std::cout << "Hello world!" << std::endl;
}
else if (i == 2) {
system("cls");
std::cout << "How are you?" << std::endl;
}
else {
std::cout << "You should enter a number 1 or 2. Others is illeagle." << std::endl;
}
return 0;
}