char* trans(char* ms, int n ) { /*以下为将ms进行大小写翻转后存入s*/ char* str = malloc(n); char* s = calloc(0, n+2); *s='\0'; s++; &nb...