题解列表

筛选

1275: 吹哨传球

摘要:解题思路: 注意事项:参考代码:#include<bits/stdc++.h> using namespace std; int main() { int n,m; cin>>n>>m;……

三位数分解

摘要:```c++ #include #include using namespace std; void Print(int n) { if(n>9) { ……

c++去除空格

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;string put(string s){    int n=s.size();  ……

第一个带类的C++程序

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){    string s,t="";    cin>>s;  ……