摘要: 1、 #include <stdio.h> int main(void) { char ch; ch = getchar(); while(ch != '\n') { if(ch == ' ') { putchar(ch); } else { putchar(ch + 1); } ch = getc 阅读全文
posted @ 2021-08-21 20:36 小鲨鱼2018 阅读(807) 评论(0) 推荐(0) 编辑