gpt4 book ai didi

c - 在 C 中打印希腊字符

转载 作者:太空宇宙 更新时间:2023-11-04 01:58:39 24 4
gpt4 key购买 nike

有没有办法在 C 中打印希腊字符?我正在尝试打印出“ΑΝΑΓΡΑΜΜΑΤΙΣΜΟΣ”这个词与:

printf("ΑΝΑΓΡΑΜΜΑΤΙΣΜΟΣ");

但我在控制台中得到一些随机符号作为输出。

最佳答案

将您的控制台字体设置为 Unicode TrueType 字体并使用“ANSI”机制(假设是 Windows...)发出数据。例如,此代码打印 γειì σου:

#include "windows.h"

int main()
{
SetConsoleOutputCP(1253); //"ANSI" Greek
printf("\xE3\xE5\xE9\xDC \xF3\xEF\xF5"); // encoded as windows-1253

return 0;
}

关于c - 在 C 中打印希腊字符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30265065/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com