1.中文輸出亂碼
解決辦法(二選一)
#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;
}