#include <stdio.h>
#include <conio.h>
#include <wchar.h>
#include <io.h>
#include <fcntl.h>
int main() {
// 设置标准输出为 Unicode 编码
_setmode(_fileno(stdout), _O_U16TEXT);
// 提示信息
wprintf(L"请按任意键继续...\n");
_getch(); // 等待用户按下任意键
// 输出“我爱你”
wprintf(L"我爱你\n");
return 0;
}