字符串操作

任务1:
输入一个字符串和一个正整数x,将该字符串中的后x个字符复制到另一个字符串y中,再对y串的内容前后倒置后存入数组z中并输出。
要求: 用指针 访问数组元素、 用函数 getx(char *c1)实现复制、用函数getr(char *c2)实现倒置。
运行示例
Enter a string: abcABCD
Enter an integer: 4
The new string is DCBA

----------------------分割线----------------------

[cpp] view plain copy print ?
  1. #include<stdio.h> 
  2. #include<string.h> 
  3. #define N 20 
  4. void getx(char *a,char *y,int n); 
  5. void getr(char *y,char *z); 
  6. int main(void
  7.     char a[N],y[N],z[N]; 
  8.     printf("Enter a string: \n"); 
  9.     gets(a); 
  10.     int n; 
  11.     printf("Enter an integer: \n"); 
  12.     scanf("%d",&n); 
  13.     getx(a,y,n); 
  14.     getr(y,z); 
  15. void getx(char *a,char *y,int n) 
  16.     char *p=a; 
  17.     while(*p!='\0')p++; 
  18.     p-=n; 
  19.     strcpy(y,p); 
  20.     printf("复制后的新数组 \n"); 
  21.     puts(y); 
  22. void getr(char *y,char *z) 
  23.     char *p=y; 
  24.     int i=0; 
  25.     while(*p!='\0')p++; 
  26.     while(p--!=y){ 
  27.         z[i]=*p; 
  28.         i++; 
  29.          
  30.     } 
  31.     z[i]='\0'
  32.     printf("反转后的新数组 \n"); 
  33.     puts(z); 

任务2:
定义一维整形数组,对数组分别进行“由大到小”和"由小到大"排序并输出。
要求: 用函数和指针 实现排序
----------------------分割线----------------------

[cpp] view plain copy print ?
  1. #include<stdio.h> 
  2. #include<string.h> 
  3. int n; 
  4. void sorttomax(int *arr,int n); 
  5. void sorttomin(int *arr); 
  6. int main(void
  7.  
  8.     printf("请输入数组大小:\n"); 
  9.     scanf("%d",&n); 
  10.     int *arr = new[n]; 
  11.     printf("请输入%d个元素:\n",n); 
  12.     for(int i=0;i<n;i++) 
  13.             scanf("%d",&arr[i]); 
  14.     sorttomax(arr,n); 
  15.     sorttomin(arr); 
  16.      
  17.     return 0; 
  18.      
  19. void sorttomax(int *arr,int n) 
  20.      int *p=arr; 
  21.      int temp; 
  22.      for(int i=0;i<n;i++) 
  23.         for(int j=1+i;j<n;j++) 
  24.              if(*(p+i)<*(p+j)) { 
  25.                temp=*(p+i); 
  26.               *(p+i)=*(p+j); 
  27.               *(p+j)=temp; 
  28.               } 
  29.      printf("由大到小排序并输出:\n"); 
  30.      for(int i=0;i<n;i++) 
  31.         printf("%d\n",*(p+i)); 
  32.  
  33. void sorttomin(int *arr) 
  34.  
  35.     int *p=arr+n; 
  36.     printf("由小到大排序并输出:\n"); 
  37.     while(p--!=arr)printf("%d\n",*p); 
  38.      


任务3:
输入字符串s,将字符放入d数组中,最后输出d中的字符串。
要求:用函数和指针实现
运行示例
输入字符串:abc123edf456gh
输出字符串:abcedfgh

[cpp] view plain copy print ?
  1. #include<stdio.h> 
  2. #include<string.h> 
  3. #define N 20 
  4.  
  5. int main(void){ 
  6.      char a[N]; 
  7.      char *p=a; 
  8.  printf("please input a string less 20 number!");
  9.      gets(a); 
  10.      while(*p!='\0'
  11.      { 
  12.         if((*p>=48&&*p<=57)) 
  13.         strcpy(p,p+1); 
  14.         else p++; 
  15.      } 
  16.       
  17.      puts(a); 
  18.      return 0;





你可能感兴趣的:(c,cc++,编程学习)