金币(C++压缩版代码) 摘要:#### 单重循环 完全可以搞定 看起来许多巨佬在这道题解上好像煞费了苦心,一来就开始敲上一些神奇而又看不懂的公式,这令广大萌新们如何是好呢? 所以这次我一定要给大家呈现一个c++入门都…… 题解列表 2024年01月26日 0 点赞 2 评论 63 浏览 评分:7.5
闲来无事的题解 摘要:解题思路:注意事项:参考代码:long long a,b; //长整形(100000000000000000000-(-100000000000000000000))int a,b; //普通整…… 题解列表 2023年07月21日 0 点赞 0 评论 92 浏览 评分:2.0
python 2833: 金币 摘要:参考代码:n = int(input()) s = 0 money = 0 flag = n day = n while day > 0: flag -= 1 money…… 题解列表 2024年03月19日 0 点赞 0 评论 77 浏览 评分:0.0
金币(是阅读思考题,开始以天数的for循环来做,不好做,还就那个突然悟到了,用while循环,不好文字说) 摘要:解题思路:设每天获取的金币数为i,题目可以看出获取的金币数也是获取该金币数的天数注意事项:参考代码:#includeint main() { int n; int i=1;//金币数 i…… 题解列表 2023年10月05日 0 点赞 0 评论 75 浏览 评分:0.0
2833: 金币 摘要:``` #include using namespace std; int x,sum=0,j=0,m=1; int main(){ cin>>x; for( int i=1;i…… 题解列表 2023年11月20日 0 点赞 0 评论 62 浏览 评分:0.0
(c语言)详细解读 摘要:解题思路:注意事项:参考代码:#include"stdio.h" int main(){ int day=1,coin=1,sum=0; //分别对应 多少天,当天可以得到的金币,总金币 …… 题解列表 2023年01月03日 0 点赞 0 评论 96 浏览 评分:0.0
while+for : 2833: 金币 摘要:``` #include using namespace std; int main() { int n; cin >> n; //IDX:用来表示当前发多少硬币 …… 题解列表 2024年10月25日 0 点赞 0 评论 53 浏览 评分:0.0
金币币币币币币币币 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int n,sum=0,a=0; cin>>n…… 题解列表 2023年07月14日 0 点赞 0 评论 55 浏览 评分:0.0
最最最简单简单 2833: 金币,不用while,注释写好了 摘要:解题思路:注意事项:参考代码:#include <iostream> using namespace std; int main() { int n, total=0; // n 天数…… 题解列表 2023年12月18日 0 点赞 0 评论 86 浏览 评分:0.0
2833: 金币2833: 金币2833: 金币 摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int main(){ int x=0,d=0,n; cin>>n; fo…… 题解列表 2024年01月31日 0 点赞 0 评论 48 浏览 评分:0.0