题解列表

筛选

编写题解 1171: 蟠桃记

摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { int a, sum, j; sum = 1, j = 0; while (scanf("%……

2961: 最长单词2

摘要:```cpp #include using namespace std; int main() { int x,max=0,q,p; char ch[500]; ……