PAT icon indicating copy to clipboard operation
PAT copied to clipboard

浙江大学PAT题解 https://pintia.cn

Results 1 PAT issues
Sort by recently updated
recently updated
newest added

```c #include int main() { int longest = 1; char line[1024] = {0}; gets(line + 1); /* line[0] as sentinel */ char *lo, *hi; for (char *p = line +...