国王的烦恼——发工资,简单方法 摘要:解题思路:如果为6天,金币数为6-0+(6-0)-(0+1)+[(6-0)-(0+1)]-(0+1+1)=14,可推断出为n天时金币为(n-0)+(n-0)-(0+1)+[(n-0)-(0+1)]-(…… 题解列表 2024年11月06日 0 点赞 0 评论 71 浏览 评分:9.9
while+for : 2833: 金币 摘要:``` #include using namespace std; int main() { int n; cin >> n; //IDX:用来表示当前发多少硬币 …… 题解列表 2024年10月25日 0 点赞 0 评论 53 浏览 评分: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
金币(C++压缩版代码) 摘要:#### 单重循环 完全可以搞定 看起来许多巨佬在这道题解上好像煞费了苦心,一来就开始敲上一些神奇而又看不懂的公式,这令广大萌新们如何是好呢? 所以这次我一定要给大家呈现一个c++入门都…… 题解列表 2024年01月26日 0 点赞 2 评论 63 浏览 评分:7.5
题解 2833: 金币 摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int main(){ int sum=0,d=0,n; cin>>n; …… 题解列表 2024年01月26日 0 点赞 1 评论 35 浏览 评分: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: 金币 摘要: #include using namespace std; int main() { int sum=0,d=0,a; cin>>a; …… 题解列表 2023年11月24日 0 点赞 0 评论 82 浏览 评分: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 评论 63 浏览 评分:0.0
优质题解 Yu金币简洁易懂写法 摘要: ##解析: 本题无法直接循环天数和金币数。 但是发现一个规律,连续的n天都发放n枚金币。 我们可以用while循环解决连续n天发放n枚金币。 **我的解法:** sum记…… 题解列表 2023年11月10日 0 点赞 0 评论 327 浏览 评分:9.9
闲来无事的题解1111111 摘要:解题思路:注意事项:参考代码:long long a,b; //长整形(100000000000000000000-(-100000000000000000000))int a,b; //普通整…… 题解列表 2023年07月21日 0 点赞 0 评论 100 浏览 评分:0.0