码迷,mamicode.com
首页 > 编程语言 > 详细

中文反转(C++)

时间:2016-10-13 16:56:03      阅读:177      评论:0      收藏:0      [点我收藏+]

标签:

#include<cstdio>
#include<cstring>
char s[201];
int main()
{
int i;
scanf("%s",s);
for (i=strlen(s)-2;i>=0;i-=2)
printf("%c%c",s[i],s[i+1]);
}

中文反转(C++)

标签:

原文地址:http://www.cnblogs.com/DZRDerek/p/5956950.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!