WsjjsZ
WsjjsZ
全部文章
分类
归档
标签
去牛客网
登录
/
注册
WsjjsZ的博客
TA的专栏
52篇文章
0人订阅
多多练习C++
52篇文章
357人学习
全部文章
(共87篇)
题解 | #特殊乘法#
#include <iostream> #include <bits/stdc++.h> using namespace std; int main() { string a, b; while (cin >> a >> b) { /...
2023-03-18
0
263
题解 | #abc#
#include <iostream> using namespace std; int main() { int a,b,c; for(int i=0;i<10;i++){ for(int j=0;j<10;j++){ ...
2023-03-18
0
269
题解 | #求最大最小数#
#include <algorithm> #include <cstring> #include <iostream> #include <bits/stdc++.h> using namespace std; int main() { in...
2023-03-18
0
197
题解 | #球的半径和体积#
#include <cmath> #include <iostream> #include <math.h> #include <iomanip> using namespace std; const double PI=acos(-1); const...
2023-03-18
0
207
题解 | #成绩排序#
#include <iostream> #include <vector> #include <algorithm> using namespace std; bool cmp(pair<int,int> a,pair<int,int> b...
2023-03-18
0
218
题解 | #反序输出#
#include <iostream> #include <bits/stdc++.h> using namespace std; int main() { string str; while (cin >> str) { // 注意 while...
2023-03-17
0
193
题解 | #成绩排序#
#include <functional> #include <iostream> #include <map> using namespace std; bool cmp(pair<string ,int> st1,pair<string ,i...
2023-03-17
0
272
题解 | #数据分类处理#
#include <iostream> #include <bits/stdc++.h> using namespace std; bool cmp(string a,string b){ int num1=atoi(a.c_str()); int num2=...
2023-03-17
0
258
题解 | #简单错误记录#
#include <iostream> #include <unordered_map> #include <algorithm> #include <bits/stdc++.h> using namespace std; struct record{...
2023-03-17
0
288
题解 | #成绩排序#
#include <iostream> #include <bits/stdc++.h> using namespace std; bool cmp(pair<string,int> st1,pair<string,int> st2){ if(...
2023-03-15
0
269
首页
上一页
1
2
3
4
5
6
7
8
9
下一页
末页