Blue_Moon1
Blue_Moon1
全部文章
分类
归档
标签
去牛客网
登录
/
注册
Blue_Moon1的博客
全部文章
(共9篇)
题解 | #二进制数#
#include<iostream> using namespace std; int main(){ long long n; while(scanf("%d",&n)!=EOF){ int res[10000]; //存放二进制数 i...
2024-03-29
1
149
题解 | #字符串排序#
#include<iostream> #include<cmath> #include<algorithm> using namespace std; struct chuan{ string str; int len; }a[100]; bool com...
2024-03-28
0
148
题解 | #打印日期#
#include<iostream> using namespace std; void nextDay(int &year,int &month,int &day){ int dayOfMonth[]={0,31,28,31,30,31,30,31,31,3...
2024-03-27
0
153
题解 | #日期类#
#include<iostream> using namespace std; void nextDay(int &year,int &month,int &day){ int dayOfMonth[]={0,31,28,31,30,31,30,31,31,3...
2024-03-27
0
146
题解 | #中位数#
//程序总不通过的原因可能是没有注意到边界条件,除了n=0之外,n停止输入也是退出循环的条件!!! #include<iostream> #include<algorithm> using namespace std; int main(){ int n; //scan...
2024-03-26
1
181
题解 | #质因数的个数#
#include<iostream> #include<cstdio> #include<cmath> using namespace std; bool isPrime(int a){ int sqr=(int)sqrt(a*1.0); for(int j...
2024-03-24
0
161
题解 | #大整数的因子#
#include<bits/stdc++.h> using namespace std; struct bign{ int d[1000]; int len; bign(){ memset(d,0,sizeof(d)); len=0; } }; bign change...
2024-03-23
0
156
题解 | #与7无关的数#
#include<bits/stdc++.h> using namespace std; int main(){ int n; while(scanf("%d",&n)!=EOF){ int count=0; for(int i=1;i<=...
2024-03-22
0
228
题解 | #买房子#
#include<bits/stdc++.h> using namespace std; int main(){ int N; int k; int i; double wage; double price; while(scanf("%d%d",&...
2024-03-22
0
189