2030ssxx
2030ssxx
全部文章
分类
归档
标签
去牛客网
登录
/
注册
2030ssxx的博客
TA的专栏
0篇文章
0人订阅
王道机试指南
0篇文章
0人学习
全部文章
(共102篇)
题解 | #整数奇偶排序#
#include <iostream> #include <cstdio> #include <algorithm> using namespace std; //更简洁的做法不需要奇偶数组:先对10个数排序,然后分别从前往后和从后往前判断奇偶数输出 bool c...
2024-08-22
0
85
题解 | #特殊排序#
#include <iostream> #include <algorithm> using namespace std; //大脑当机了属于,哼次哼次做完才发现,根本不用找最大数,也不用建立替换数组,直接对原始数组排序,最后一个就是最大值了 int main() { ...
2024-08-22
0
82
题解 | #成绩排序#
#include <iostream> #include <algorithm> using namespace std; //相同成绩按先录入排列在前的规则处理。:可以在结构体里给每个用户设置一个int order struct cj{ string name; ...
2024-08-22
0
92
题解 | #成绩排序#
#include <iostream> #include <algorithm> using namespace std; struct cj{ int id; int score; };//对一组基本类型排序:构造结构体,写cmp函数 cj a[100]...
2024-08-22
0
87
题解 | #排序#
#include <iostream> #include<algorithm>//sort函数的头文件 using namespace std; int main() { int n,a[100]; cin>>n; for(int i=0...
2024-08-22
0
83
题解 | #Grading#
#include <iostream> //#include<cstdio> #include<cmath> using namespace std; int main() { double p,t,g1,g2,g3,gj; while (cin...
2024-08-19
0
93
题解 | #xxx定律#
#include <iostream> using namespace std; int main() { int n; while (cin >>n) { //考虑特殊情况:n为0 if(n==0)break; int...
2024-08-19
0
76
题解 | #手机键盘#
//判断两个相邻字母是否在同一组按键上有其他方式 //若两相邻字母相减之差(0~3)==两相邻字母按键时间之差,则需要加上等待时间 //不过我的方法也很好 #include <iostream> using namespace std; int a[9][5]={ {0,0,0,0,0}...
2024-08-18
0
77
题解 | #剩下的树#
#include <iostream> using namespace std; int m[101][3]; int f[10001]={0};//一开始写成101了,然后就一直报段错误,结果是数组超界溢出了 int main() { int l, n;cin>>l...
2024-08-18
0
96
题解 | #日期类#
#include <iostream> using namespace std; int p[13]={0,31,28,31,30,31,30,31,31,30,31,30,31}; int Run(int k) { if((k%400==0)||((k%4==0)&&a...
2024-08-18
0
81
首页
上一页
2
3
4
5
6
7
8
9
10
11
下一页
末页