题解列表

筛选

STL句子拆分成单词

摘要:#include<bits/stdc++.h> using namespace std; set<string>s; int main() {     string str,c;     ……

绝了,涨知识了, 科学计数法输出

摘要:解题思路:循环加递归加格式化输出注意事项:首先是变量的大小一定要用对,然后输出格式要对参考代码:#include <iostream> #include <vector> #include <io……

2981: 二进制分类

摘要:```cpp #include using namespace std; int A,B; bool turn(int x) { int a=0,b=0; while(x!=0) ……

这个作弊也可以哟

摘要:解题思路:无注意事项:无参考代码:#include<iostream>using namespace std;int main(){    cout<<"Glmre";    return 0;}……

[竞赛入门]简单的a+b(C++)

摘要:解题思路:定义a,b,输入各值,输出a+b就可以了注意事项:参考代码:#include<iostream>using namespace std;int main(){    int a,b;    ……