c++ 常見問題

一个小笨蛋發表於2024-07-12

1.中文輸出亂碼

image
解決辦法(二選一)

#include <iostream>
#include "windows.h"
using namespace std;
// 方法1:
//  引入Windows.h
//  增加 SetConsoleOutputCP(CP_UTF8);
// 方法2:
//  system("chcp 65001")
int main() {
    SetConsoleOutputCP(CP_UTF8);
    cout << "中國" << endl;
    system("chcp 65001");
    return 0;
}