地沟油油烟机
地沟油油烟机
全部文章
分类
归档
标签
去牛客网
登录
/
注册
地沟油油烟机的博客
全部文章
(共27篇)
题解 | #特殊排序#
#include<iostream> #include<cstdio> #include<algorithm> using namespace std; int main(){ int n,arr[10000]; scanf("%d&...
2024-02-21
0
183
题解 | #整数奇偶排序#
#include<iostream> #include<cstdio> #include<algorithm> using namespace std; bool cmp(int a,int b){ return a>b; } int main...
2024-02-21
0
186
题解 | #成绩排序#
#include <iostream> #include<cstdio> #include<algorithm> using namespace std; struct student{ string name; int score; i...
2024-02-19
0
199
题解 | #成绩排序#
#include <iostream> #include<cstdio> #include<algorithm> using namespace std; struct excel{ int number; int score; }; ...
2024-02-19
0
231
题解 | #排序#
#include <iostream> #include<algorithm> using namespace std; int main() { int n; int arr[10000]; while(scanf("%d",&n)!=EOF)...
2024-02-19
0
206
题解 | #Grading#
#include<iostream> #include<cstdio> using namespace std; int max(int i,int j,int k){ if(i>j) return (i>k)?i:k; els...
2024-02-18
0
243
题解 | #xxx定律#
#include<iostream> #include<cstdio> using namespace std; int main(){ int number=0; int n; while(scanf("%d",&n)...
2024-02-18
0
231
题解 | #剩下的树#
#include<iostream> #include<cstdio> using namespace std; #define max 100000 int main(){ int road[max]={0}; int l,m; ...
2024-02-18
0
215
题解 | #日期累加#
#include<cstdio> #include<cstring> #include<iostream> using namespace std; int dayn[3][13]={{0,31,28,31,30,31,30,31,31,30,31,30,32}...
2024-02-08
0
158
题解 | #打印日期#
#include<cstdio> #include<cstring> #include<iostream> using namespace std; int day1[13]={0,31,28,31,30,31,30,31,31,30,31,30,32}; in...
2024-02-08
0
191
首页
上一页
1
2
3
下一页
末页