摘要: #include <iostream> // 大写转小写 小写转大写 static char UpperOrLower(char ch) { return (ch ^ 0x20); } // 转大写 static char ToUpper(char ch) { // 0xDF => 11011111 阅读全文
posted @ 2022-12-27 20:12 炎叶 阅读(128) 评论(0) 推荐(0)