程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程解疑 >> 編程c語言-vs2013中編寫c++程序如何在黑框之中切換界面呢?

編程c語言-vs2013中編寫c++程序如何在黑框之中切換界面呢?

編輯:編程解疑
vs2013中編寫c++程序如何在黑框之中切換界面呢?

意思就是比如我做一個系統有多個功能選項 輸入選擇其中一個功能後跳到那個功能的界面 怎麼做到的呢 是用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;
}
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved