优质题解 Yu金币简洁易懂写法 摘要: ##解析: 本题无法直接循环天数和金币数。 但是发现一个规律,连续的n天都发放n枚金币。 我们可以用while循环解决连续n天发放n枚金币。 **我的解法:** sum记…… 题解列表 2023年11月10日 0 点赞 0 评论 331 浏览 评分:9.9
简单的数学题 摘要:解题思路:题目可以理解为n天,每天给n块,换算成公式就是x=x+n*n,所以我们可以按公式算出来,然后增加一个判断,是否为1+2+3+4……+n的值,不是就减去。注意事项:参考代码:#include<…… 题解列表 2023年10月23日 0 点赞 0 评论 228 浏览 评分:9.9
金币(Java,含注释) 摘要:解题思路:注意事项:参考代码:import java.util.*;public class Test { public static void main(String[] args){ …… 题解列表 2023年10月10日 0 点赞 0 评论 128 浏览 评分:9.9
金币(是阅读思考题,开始以天数的for循环来做,不好做,还就那个突然悟到了,用while循环,不好文字说) 摘要:解题思路:设每天获取的金币数为i,题目可以看出获取的金币数也是获取该金币数的天数注意事项:参考代码:#includeint main() { int n; int i=1;//金币数 i…… 题解列表 2023年10月05日 0 点赞 0 评论 80 浏览 评分:0.0
闲来无事的题解1111111 摘要:解题思路:注意事项:参考代码:long long a,b; //长整形(100000000000000000000-(-100000000000000000000))int a,b; //普通整…… 题解列表 2023年07月21日 0 点赞 0 评论 107 浏览 评分:0.0
闲来无事的题解 摘要:解题思路:注意事项:参考代码:long long a,b; //长整形(100000000000000000000-(-100000000000000000000))int a,b; //普通整…… 题解列表 2023年07月21日 0 点赞 0 评论 99 浏览 评分:2.0
题解 2833:只因币 摘要:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int sum=0,a=0 ; int n ; cin>>n…… 题解列表 2023年07月14日 0 点赞 0 评论 128 浏览 评分:9.9
***********金币**************** 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int a=0,n,sum=0; cin>>n…… 题解列表 2023年07月14日 0 点赞 0 评论 89 浏览 评分:9.9
金币币币币币币币币 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int n,sum=0,a=0; cin>>n…… 题解列表 2023年07月14日 0 点赞 0 评论 61 浏览 评分:0.0
国王的金币 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int day,money=0,mmoney=1,i…… 题解列表 2023年07月14日 0 点赞 0 评论 408 浏览 评分:9.9