摘要: 1、输入任意 4 个字符(如:abcd),并按反序输出(如:dcba)。 #include <iostream> using namespace std; int main() { string s; while(cin >> s) { for(int i = s.length() - 1; i > 阅读全文
posted @ 2020-03-17 23:51 AlsoRan 阅读(252) 评论(0) 推荐(0) 编辑