在考古的小鱼干很有气魄
在考古的小鱼干很有气魄
全部文章
分类
归档
标签
去牛客网
登录
/
注册
在考古的小鱼干很有气魄的博客
全部文章
(共81篇)
题解 | #多项式的值#
#include <bits/stdc++.h> using namespace std; int main(){ int data[11]; int m,n,x; cin>>m; while(m--){ cin>>n; for(int i =...
2023-03-13
1
329
题解 | #计算天数#
#include <bits/stdc++.h> #define MAX 20 using namespace std; int a1[13] = {0,31,28,31,30,31,30,31,31,30,31,30}; int a2[13] = {0,31,29,31,30,31,...
2023-03-13
1
301
题解 | #学生查询#
#include <iostream> #include <algorithm> #define MAX 21 using namespace std; typedef struct{ int no; string name; string gender; int ...
2023-03-13
1
366
题解 | #围圈报数#
#include <iostream> #include <list> using namespace std; int main(){ int m,n,tmp; cin>>m; while(m--){ list<int> l; ...
2023-03-12
2
309
题解 | #分段函数#
#include <iostream> #include <stack> using namespace std; float fun1(float x){ return -x + 2.5; } float fun2(float x){ return 2-1.5*(x-...
2023-03-12
1
382
题解 | #堆栈的使用#
#include <iostream> #include <stack> using namespace std; int main(){ int n; string str,data; while(cin>>n){ stack<string...
2023-03-12
2
331
题解 | #搬水果#
#include <bits/stdc++.h> #define MAX 10000 using namespace std; int main(){ int n,data[MAX]; while(cin>>n){ if(n == 0) break; ...
2023-03-12
2
288
题解 | #数字之和#
#include <bits/stdc++.h> using namespace std; int main(){ int n; while(cin>>n){ long pf = n*n; int sum1 = 0,sum2 = 0; while(n){ ...
2023-03-12
1
334
题解 | #平方因子#
#include <bits/stdc++.h> #define MAX 10000 using namespace std; int main(){ int n; while(cin>>n){ if(n == 0) break; int k = sqr...
2023-03-12
1
328
题解 | #排列与二进制#
#include <bits/stdc++.h> #define MAX 10000 using namespace std; int main(){ int res[MAX]; int n,m,k,len,i,sum; while(cin>>n>>m)...
2023-03-12
2
304
首页
上一页
1
2
3
4
5
6
7
8
9
下一页
末页