解题思路:
思路一:
输入字符串,把它的逆序字符串存放在原字符串后面,然后输出;
思路二:
输入字符串,然后分别位于同一行顺序输出,逆序输出;
思路三:
就思路二的所有输出,采用递归实现;
注意事项:
思路一:放在原字符串后面时,要从第lenth-1的位置开始放,直到原字符串第一个字符放入为止;
即:
for( i=strlen(a),j=strlen(a)-1; j>=0; i++,j--) { a[i]=a[j]; }
最后要加上' \0';
有一种的思路是,循环不是以原字符串第一个字符结束,而是以原字符串长度的两倍-1结束,
即:(下面这样是不对的,因为a[ strlen(a) ]原来是' \0', 被放字符后,求出长度不对,并且a的长度在改变)
for( i=strlen(a),j=strlen(a)-1; i<2*strlen(a); i++,j--) { a[i]=a[j]; }
思路二: 注意:逆序输出时,输出的第一个字符,为原字符串最后一个字符,下标为字符串长度减去1;
思路三:注意:顺序输出时,只能输出到字符串长度减去1的那个字符(因为下标从0开始);逆序输出时,输出的第一个字符:为原字符串最后一个字符,下标为字符串长度减去1;
也就是代码中:要减去1,比如,若顺序输出没有减去1,当自己运行,(codeblocks)能输出正确的结果(因为'\0'是不会显示的),但是正规检测是不对的,会检测到 '\0'的输出;
shun_output(a,strlen(a)-1); ni_output(a,strlen(a)-1);
参考代码:
1.
#include <stdio.h> #include <string.h> int main() { char a[101]; int i, j = 1; gets( a ); for ( i = strlen( a ), j = strlen( a ) - 1; j >= 0; i++, j-- ) { a[i] = a[j]; } a[i] = '\0'; puts( a ); return(0); }
2.
#include <stdio.h> #include <string.h> int main() { char a[51]; gets( a ); printf( "%s", a ); for ( int i = strlen( a ) - 1; i >= 0; i-- ) putchar( a[i] ); return(0); }
3.
#include <stdio.h> #include <string.h> void shun_output( char *a, int len ); void ni_output( char *a, int len ); /*---------------------------------------------*/ int main() { char a[51]; gets( a ); shun_output( a, strlen( a ) - 1 ); ni_output( a, strlen( a ) - 1 ); return(0); } /*---------------------------------------------*/ void shun_output( char *a, int len ) { if ( len > 0 ) shun_output( a, len - 1 ); putchar( a[len] ); return; } /*---------------------------------------------*/ void ni_output( char *a, int len ) { putchar( a[len] ); if ( len > 0 ) ni_output( a, len - 1 ); return; }
0.0分
33 人评分
#include<stdio.h> #include<string.h> int main() { char a[101]; gets(a); for(int i=strlen(a),int j=strlen(a)-1;j>=0;i++,j--) { a[i]=a[j]; } a[i]='\0'; puts(a); return 0; } 这和代码1就一个不同点就是i,j在for内定义,为什么会报错,求解
#include"stdio.h" #include"math.h" #include"string.h" int main(void) { char arr[20]="123abc"; char *ptr="abc123"; strcat(arr,ptr); printf("%s",arr); }
UDmaster 2022-07-23 09:48:31 |
你小子
#include<stdio.h> #include<string.h> int fanxiang(); int main() { char a[1000],b[1000]; gets(a); fanxiang(a,b); puts(a); return 0; } int fanxiang(char a[],char b[]) { int i,j,k=0; i=strlen(a); for(j=i;j>0;j--) { b[k++]=a[j]; } a[1000]=strcat(a,b); return a; } 我的思路是将字符和反向之后的字符都存放在两个数组中,在调用函数使b数组中存放逆序的字符以及将正序和逆序的字符通过strcat函数连接并返回主函数中,但为什么运行结果不出
君哒白 2022-07-24 14:48:18 |
j=i-1;j>=0
快乐肥仔 2023-05-15 10:30:05 |
#include<stdio.h> #include<string.h> int fanxiang(); int main() { char a[1000],b[1000]; gets(a); fanxiang(a,b); puts(a); return 0; } int fanxiang(char a[],char b[]) { int i,j,k=0; i=strlen(a); for(j=i-1;j>=0;j--) { b[k++]=a[j]; } strcat(a,b); }
快乐肥仔 2023-05-15 10:30:37 |
抄着你的,改了一下
思路二 #include<stdio.h> int main() { char a[50]; int i,j; gets(a); for(i=0;a[i]!='\0';i++){ printf("%c",a[i]); } for(j=i-1;j>=0;j--){ printf("%c",a[j]); } return 0; }
C语言训练-求s=a+aa+aaa+aaaa+aa...a的值 (C语言代码)浏览:1084 |
C语言训练-求矩阵的两对角线上的元素之和 (C语言代码)浏览:619 |
C语言程序设计教程(第三版)课后习题5.6 (C语言代码)浏览:909 |
C语言程序设计教程(第三版)课后习题6.2 (C语言代码)浏览:1432 |
【计算两点间的距离】 (C语言代码)浏览:1522 |
用筛法求之N内的素数。 (C++代码)浏览:754 |
字符逆序 (C语言代码)浏览:645 |
杨辉三角 (C语言代码)浏览:504 |
交换Easy (C语言代码)浏览:805 |
排序算法(选择,插入,冒泡)浏览:876 |
自由无畏 2023-01-05 16:23:32 |
局部定义,它只作用在for循环内