题解 1093: 字符逆序

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

字符逆序-题解(Python代码)python

摘要:```python list = input()#输入数据 list=list[::-1]#翻转数据 print(''.join(list))#输出数据(双引号里面没有空格)emmmmmmmmm……

字符逆序 (C++代码)

摘要:### 字符逆序的输出 利用while()循环进行逐个输出字符; **leng ** 为代码长度 ```cpp #include #include "string" using ……