15 lines
375 B
C++
15 lines
375 B
C++
#include <iostream>
|
|
#include <windows.h>
|
|
#include <string>
|
|
|
|
int main()
|
|
{
|
|
SetConsoleOutputCP(CP_UTF8);
|
|
SetConsoleCP(CP_UTF8);
|
|
std::string tp;
|
|
std::cout << "u8 read output test!" << std::endl;
|
|
std::cout << "あああ🙂🙂🙂👌中文👍Кириллица" << std::endl;
|
|
std::getline(std::cin, tp);
|
|
std::cout << tp << std::endl;
|
|
return 0;
|
|
} |