发布网友 发布时间:2022-02-24 01:43
共5个回答
热心网友 时间:2022-02-24 03:12
180°=180alt+176
一百八十度等于一八零加alt加176
°=ALT 176
参考资料:http://ke.baidu.com/view/65582.htm#2
热心网友 时间:2022-02-24 04:30
你上面写的“°”,用gb2312表示的话,值为0xa1e3。
因为不属于ASC,所以不能用%c打印。
可以通过字符串打印方式输出。
比如:
char deg[] = {0xa1,0xe3, 0}; // °
char str[30] = {0};
sprintf(str,"180%s", deg);
查看str值为“180°”
或者直接 printf("180%s", deg);
热心网友 时间:2022-02-24 06:05
把°放在字符串里输出就行啦。
例如 x = 180
输出 printf("x=%d°", x);
得到 x=180°的结果
热心网友 时间:2022-02-24 07:56
可以用转义字符啊
比如说printf("180\xF8\n");
热心网友 时间:2022-02-24 10:04
貌似没有