摘要: 第1关:求字母 ​ 本关任务:输入一个小写字母求其后面的第二个字母.如字母d后面的第二个字母为f, 字母y后面的第二个字母为a #include <stdio.h> int main() { char ch; scanf("%c",&ch); if(ch<=120) //判断字母位置 ch=ch+2 阅读全文
posted @ 2021-07-14 23:51 颜骏 阅读(423) 评论(0) 推荐(0) 编辑