不愧是最难的C,光是输入就可以深入研究了 #include <stdio.h> #include <string.h> #include <malloc.h> const int INPUT_MAX_LEN = 5000; int main() { // 创建长度为INPUT_MAX_LEN的字符数组 char* str = (char*)mal...