C語言解法--壓縮字符串

  #include <stdio.h> //#include <string.h> int length(int n){     int k=0;     while(n){         n/=10;         k++;     }     return k; } void strpress(char * str){     char *p=str;     char *t=p;  
相關文章
相關標籤/搜索