标签:style blog color io strong for ar div
输入一个字符串,对该字符串进行逆序,输出逆序后的字符串。
输入格式:
输入在一行中给出一个不超过80个字符长度的、以回车结束的非空字符串。
输出格式:
在一行中输出逆序后的字符串。
输入样例:
Hello World!
输出样例:
!dlroW olleH
1 #include <stdio.h> 2 #include <string.h> 3 4 int main() 5 { 6 char str[81]; 7 gets(str); 8 int str_len; 9 str_len = strlen(str); 10 int i; 11 for(i = str_len-1; i >= 0; i--) { 12 printf("%c", str[i]); 13 } 14 15 return 0; 16 }
10-3. 字符串逆序(15),布布扣,bubuko.com
标签:style blog color io strong for ar div
原文地址:http://www.cnblogs.com/aexin/p/3898215.html