会员
周边
众包
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
litianyu1969
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
20
21
22
23
24
25
下一页
2023年4月28日
打卡15
摘要: 3.2亲密数 思路很简单,先遍历1-3000,把因子算一下,加一下,然后再算和的质因数和,看是否相等即可,时间复杂度不是很高 流程也很简单 #include<bits/stdc++.h>using namespace std; int f(int x)//求一个数的因子和 { int sum=0;
阅读全文
posted @ 2023-04-28 11:42 临江柔
阅读(12)
评论(0)
推荐(0)
编辑
2023年4月27日
打卡14
摘要: 3.1完数 #include<bits/stdc++.h>using namespace std;int n; int f(int x){ int sum=0; for(int i=2;i<n/i;i++)//可以缩短时间复杂度 { if(x%i==0)sum+=i; } return sum;}
阅读全文
posted @ 2023-04-27 12:36 临江柔
阅读(10)
评论(0)
推荐(0)
编辑
2023年4月26日
打卡13
摘要: 2.11换分币 相当于x张10,y张5,z张1,10x+5y+z=50; #include<bits/stdc++.h>using namespace std;int main(){ for(int i=0;i<=5;i++) { for(int j=0;j<=10;j++) { if(i*10+j
阅读全文
posted @ 2023-04-26 16:27 临江柔
阅读(10)
评论(0)
推荐(0)
编辑
2023年4月25日
打卡12
摘要: 2.9设汉王的失算 这道题非常的简单,直接从2的0次方加到2的63次方即可 #include<bits/stdc++.h>using namespace std; int main(){ double ans=0; for(int i=0;i<64;i++) { ans+=pow(2,i); } c
阅读全文
posted @ 2023-04-25 19:07 临江柔
阅读(22)
评论(0)
推荐(0)
编辑
2023年4月24日
打卡11
摘要: 2.8 猜数牌 基本框架 for(int i=1;i<=13;i++)//循环13次,每次将一张牌放进盒子 { int n=1; do //内循环找盒子,将i号牌放入 { //如果盒子非空,继续找下一个盒子 //如果盒子空,判断盒子序号和牌序号是否相同,相同则存入 }while(n<=i); } d
阅读全文
posted @ 2023-04-24 12:08 临江柔
阅读(15)
评论(0)
推荐(0)
编辑
2023年4月21日
打卡10
摘要: 2.7爱因斯坦的数学题 一个循环解决 #include<iostream>using namespace std;int main(){ for(int i=7;i<10000;i+=7) { if(i%2==1&&i%3==2&&i%5==4&&i%6==5) { cout<<i<<endl; }
阅读全文
posted @ 2023-04-21 10:12 临江柔
阅读(10)
评论(0)
推荐(0)
编辑
2023年4月20日
打卡9
摘要: 2.5出售金鱼 我们可以反着来,不断加上1/i条,再乘以i 得到一个公式,n=(n*i+1)/(i-1) 一共要算4次 #include<iostream>using namespace std;int main(){ double n=11; for(int i=5;i>=2;i--) { n=(
阅读全文
posted @ 2023-04-20 12:52 临江柔
阅读(17)
评论(0)
推荐(0)
编辑
2023年4月19日
打卡8
摘要: 2.4三色球问题 流程图 #include<bits/stdc++.h>using namespace std; int main(){ for(int i=0;i<=3;i++)//红球 { for(int j=0;j<=3;j++)//白球 { //如果剩下的球小于等于黑球的个数那么就符合 if
阅读全文
posted @ 2023-04-19 12:57 临江柔
阅读(14)
评论(0)
推荐(0)
编辑
2023年4月18日
打卡7
摘要: 2.3分糖果 源代码 #include<bits/stdc++.h>using namespace std;int j;int s[10]={10,2,8,22,16,4,10,6,14,20},t[10];//初始糖果 代理bool check(int a[])//判断是否相同{ for(int
阅读全文
posted @ 2023-04-18 09:33 临江柔
阅读(15)
评论(0)
推荐(0)
编辑
2023年4月17日
打卡6
摘要: 2.1个人所得税问题 //if else就可以 #include<bits/stdc++.h>using namespace std;typedef long long ll;int n; int main(){ cin>>n; double ans; if(n<3500)cout<<n;//小于起
阅读全文
posted @ 2023-04-17 17:09 临江柔
阅读(21)
评论(0)
推荐(0)
编辑
上一页
1
···
20
21
22
23
24
25
下一页