2022年6月29日 星期三

反轉字串



 


#include <stdio.h>

#include <stdlib.h>

#include <string.h>

/* run this program using the console pauser or add your own getch, system("pause") or input loop */

//反轉字串,用一維陣列即可求解 

int main(int argc, char *argv[]) 

{

int i;

char a[101];//不能用int只能用字元

scanf("%s",a);//string輸入一串字

int length=strlen(&a[0]);//L=Length 123 長度為3 

for(i=length-1;i>=0;i--)//a[0] a[1] a[2]陣列最大為長度-1 

{

printf("%c",a[i]);//印最後一個 印最後第二個 印1個剛好 

}

return 0;

}

沒有留言:

張貼留言

algorithm

 #include <iostream> #include <string.h> using namespace std; int main(int argc, char** argv)  { for(int j=2;j<=100;j++)//j...