标签:item title wrap ssg bsp get out ring strong
测试数据有多组,每组输入一个字符串。
对于每组输入,请输出逆置后的结果。
hdssg
gssdh
#include <iostream> #include <stdio.h> #include <string.h> using namespace std; int main(){ char a[210]; while(gets(a)){ for(int i=strlen(a)-1;i>=0;i--){ cout<<a[i]; } cout<<endl; } return 0; }
标签:item title wrap ssg bsp get out ring strong
原文地址:http://www.cnblogs.com/mlgjb/p/6909181.html