C 练习实例35

题目:字符串反转,如将字符串 "www.runoob.com" 反转为 "moc.boonur.www"。

代码:

#include 
#include 
int main()
{
	char str[100];
	printf("请输入字符串:\n");
	gets(str);
	printf("你输入的字符串是:\n");
	puts(str);
	int i=strlen(str)-1;
	printf("字符串逆置:\n");
	while(i>=0){
		printf("%c",str[i--]);
	}
	return 0;
}

运行结果:

请输入字符串:
www.runoob.com
你输入的字符串是:
www.runoob.com
字符串逆置:
moc.boonur.www

你可能感兴趣的:(c语言经典100题,c语言)