码迷,mamicode.com
首页 > 其他好文 > 详细

输入字符串反序输出

时间:2015-07-09 19:52:49      阅读:72      评论:0      收藏:0      [点我收藏+]

标签:

#include<stdio.h>
#include<string.h>
int main()
{
	char str[100],ch;
	int i,j,k;
	printf("please input a string:\n");
	scanf("%s",&str);
	k = strlen(str);
	for(i=0,j=k-1;i<k/2;i++,j--)
	{
		ch = str[i];
		str[i] = str[j];
		str[j] = ch;
	}
	printf("%s\n",str);
	return 0;
}
please input a string:
HelloWorld
dlroWolleH
Press any key to continue


版权声明:本文为博主原创文章,未经博主允许不得转载。

输入字符串反序输出

标签:

原文地址:http://blog.csdn.net/u012701023/article/details/46820629

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