题解 2906: 笨小猴

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

2906: 笨小猴

摘要:```cpp #include #include #include #include using namespace std; bool ZS(int n) { if(nn; ……

2906笨小猴c++

摘要:参考代码:#include<bits/stdc++.h>using namespace std;int bbb(int n){    if(n<2)        return 0;    for(i……

2906: 笨小猴

摘要:```cpp #include using namespace std; int main() { string s; cin >> s; int max=0,m……

题解 2906: 笨小猴

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h> using namespace std; int ZS(int n){ if(n<2) return 0; ……