while+for : 2833: 金币 摘要:``` #include using namespace std; int main() { int n; cin >> n; //IDX:用来表示当前发多少硬币 …… 题解列表 2024年10月25日 0 点赞 0 评论 70 浏览 评分:0.0
(c语言)详细解读 摘要:解题思路:注意事项:参考代码:#include"stdio.h" int main(){ int day=1,coin=1,sum=0; //分别对应 多少天,当天可以得到的金币,总金币 …… 题解列表 2023年01月03日 0 点赞 0 评论 100 浏览 评分:0.0
金币666简单算法 摘要:#include<stdio.h> int main(){ int i=1,d=0,n,s=0,c; scanf("%d",&n); while(d<n){ c=i; whi…… 题解列表 2024年11月06日 0 点赞 0 评论 84 浏览 评分: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 评论 50 浏览 评分:0.0
题解 2833: 金币 摘要: #include using namespace std; int main() { int sum=0,d=0,a; cin>>a; …… 题解列表 2023年11月24日 0 点赞 0 评论 86 浏览 评分:0.0
编写题解 2833: 金币,python超简单 摘要:def calculate_coins(days): coins = 0 # 初始化骑士收到的金币总数为0 n = 1 # 初始化每天的金币数量为1 day_coun…… 题解列表 2024年03月27日 0 点赞 0 评论 214 浏览 评分:0.0
编写题解 2833: 金币 摘要:解题思路:注意事项:参考代码:#include <stdio.h> #include<math.h> int main() { int a,sum = 0,m = 1; int …… 题解列表 2023年01月21日 0 点赞 0 评论 71 浏览 评分:0.0
金币(是阅读思考题,开始以天数的for循环来做,不好做,还就那个突然悟到了,用while循环,不好文字说) 摘要:解题思路:设每天获取的金币数为i,题目可以看出获取的金币数也是获取该金币数的天数注意事项:参考代码:#includeint main() { int n; int i=1;//金币数 i…… 题解列表 2023年10月05日 0 点赞 0 评论 80 浏览 评分:0.0
题解 2833: 金币 摘要:解题思路:注意事项:参考代码:n = int(input())s = 0m = 0d = 0while True: m +=1 s += m*m d += m if d >= …… 题解列表 2024年07月31日 0 点赞 0 评论 75 浏览 评分:0.0
c语言代码解决问题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n, sum = 0, day_earn = 1,i; scanf("%d", &n); …… 题解列表 2023年06月04日 0 点赞 0 评论 70 浏览 评分:0.0