陈方长
陈方长
全部文章
分类
归档
标签
去牛客网
登录
/
注册
陈方长的博客
全部文章
(共5篇)
题解 | #位操作练习#
//傻瓜做法 #include<iostream> #include<string> #include<algorithm> using namespace std; void isok(string s, string t) { string rem ...
2023-03-31
0
0
题解 | #统计单词#
#include<bits/stdc++.h> using namespace std; int main() { string s, t; while (getline(cin, s)) { for (int i = 0; i < s.size(...
2023-03-27
0
0
题解 | #最简真分数#
#include<bits/stdc++.h> using namespace std; bool istrue(int x, int y) { int min = x; if (y < x) { min = y; } for (i...
2023-03-08
0
198
题解 | #回文字符串#
#include<bits/stdc++.h> using namespace std; int main(){ string s; while(cin>>s){ int ls=s.length(); int flag=1; ...
2023-03-07
0
0
题解 | #最小年龄的3个职工#
#include<bits/stdc++.h> using namespace std; struct worker { int num; string name; int age; } er[100]; bool cmp(worker a, worker b...
2023-03-02
1
0