摘要: 1 //要求:给一个英文句子,逆序输出 2 //比如:输入"I am a student.";输出"student. a am I" 3 4 #include <stdio.h> 5 #include <stdlib.h> 6 #include <string.h> 7 8 char str[100 阅读全文
posted @ 2020-04-10 17:56 crazyCodeFarmer 阅读(241) 评论(0) 推荐(0)