牛烘烘
牛烘烘
全部文章
题解
归档
标签
去牛客网
登录
/
注册
牛烘烘的博客
全部文章
/ 题解
(共8篇)
题解 | #发送offer#
offer_list=['Allen','Tom'] for i in offer_list: print('{}, you have passed our interview and will soon become a member of our company.'.format(i))...
Python3
2022-06-19
91
4496
题解 | #素数#
#include<iostream> #include<cstdio> #include<cmath> using namespace std; bool judge(int x){ //判断是否为素数的函数 if...
C++
2022-04-02
1
407
题解 | #八进制#
#include<iostream> #include<cstdio> #include<string> #include<vector> using namespace std; string str; char inttochar(int x){ ...
C++
2022-04-01
1
397
题解 | #完数与盈数#
#include<iostream> #include<cstdio> #include<vector> using namespace std; vector<int>numberE; vector<int>numberG; int su...
C++
2022-03-29
2
351
题解 | #找最小数#
#include<iostream> #include<cstdio> #include<algorithm> using namespace std; const int maxn=1000+10; struct cmp{ ...
C++
2022-03-24
2
413
题解 | #找x#
#include<iostream> #include<cstdio> using namespace std; int maxn=200+10; int main(){ int arr[maxn]; int n; while(scanf("%d",&...
C++
2022-03-24
1
302
题解 | #特殊排序#
#include<iostream> #include<cstdio> #include<algorithm> using namespace std; struct mouse{ int weight; string color; }; bool...
C++
2022-03-24
5
411
题解 | #特殊排序#
#include<iostream> #include<cstdio> #include<algorithm> using namespace std; int maxn=1000; int main(){ int n; while(scanf("...
C++
2022-03-24
0
356