摘要: 1 while ( 2 (ch = getchar()) 3 != '\n') { 4 if (!isalpha(ch)) { 5 putchar(ch); 6 } else { 7 putchar(ch + 1); 8 } 9 } 10 while ((ch = getchar()) != '\n 阅读全文
posted @ 2021-09-14 12:24 Anny0920 阅读(39) 评论(0) 推荐(0) 编辑