_苏格拉底_
_苏格拉底_
全部文章
分类
归档
标签
去牛客网
登录
/
注册
_苏格拉底_的博客
全部文章
(共49篇)
题解 | while
#include<iostream> using namespace std; int main(){ string s; cin >> s; int times=0; if(s[0]!='w')times++; if(s[1]!='h...
2025-11-25
0
5
题解 | 有序序列合并
#include<iostream> #include<algorithm> #include<vector> using namespace std; int main(){ int n,m; cin >> n >> m;...
2025-11-25
0
5
题解 | 乘法表
#include<iostream> #include<iomanip> using namespace std; int main(){ for(int i=1;i<10;i++){ for(int j=1;j<i+1;j++){ ...
2025-11-24
0
8
题解 | N个数之和
#include<iostream> #include<vector> using namespace std; int main(){ int n; cin >> n; vector<int>arr(n); int s...
2025-11-21
0
14
题解 | 牛牛的快递
#include<iostream> #include<cmath> using namespace std; int main(){ double n; char c; cin >> n >> c; if(n<=...
2025-11-21
0
11
题解 | 三角形判断
#include<iostream> #include<algorithm> using namespace std; int main(){ int a,b,c; while(cin >> a >> b >> c){ ...
2025-11-20
0
9
题解 | 及格分数
#include<iostream> #include <ostream> using namespace std; bool ispass(int n){ if(n>=60)return true; return false; } int main()...
2025-11-20
0
10
题解 | 年轻人不讲5的
#include<iostream> using namespace std; int main(){ string s; cin >> s; for(int i=0;i<s.size();i++){ if(s[i]=='5')s...
2025-11-19
0
13
题解 | 牛牛的数学作业
#include<iostream> #include<cmath> #include<algorithm> #include<vector> #include<iomanip> using namespace std; int main(...
2025-11-19
1
11
题解 | 卡拉兹函数
#include<iostream> using namespace std; int main(){ int n; cin >> n; if(n%2==0){ cout << n/2; return 0; ...
2025-11-17
0
14
首页
上一页
1
2
3
4
5
下一页
末页