摘要: case.cpp内容如下: #include <iostream> using namespace std; char jc_tolower(char c) { return (c >= 'A' && c <= 'Z') ? (c | 0x20) : c; } char jc_toupper(cha 阅读全文
posted @ 2020-07-30 16:48 jackie_astro 阅读(184) 评论(0) 推荐(0) 编辑