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
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
编写题解 2833: 金币,python超简单 摘要:def calculate_coins(days): coins = 0 # 初始化骑士收到的金币总数为0 n = 1 # 初始化每天的金币数量为1 day_coun…… 题解列表 2024年03月27日 0 点赞 0 评论 207 浏览 评分:0.0
题解 2833: 金币 (使用数学公式) 摘要:| 天数 | 1 | 2 | 3 | 4| 5 |6 | 7 | 8 | 9 | 10 |...| | :------------ | :------------ | :-…… 题解列表 2024年04月09日 0 点赞 0 评论 185 浏览 评分:9.9
题解 2833: 金币 摘要:解题思路:注意事项:参考代码:n = int(input())s = 0m = 0d = 0while True: m +=1 s += m*m d += m if d >= …… 题解列表 2024年07月31日 0 点赞 0 评论 66 浏览 评分:0.0
while+for : 2833: 金币 摘要:``` #include using namespace std; int main() { int n; cin >> n; //IDX:用来表示当前发多少硬币 …… 题解列表 2024年10月25日 0 点赞 0 评论 54 浏览 评分:0.0
用for嵌套解决国王的烦恼——发工资(C语言) 摘要:简单的for嵌套是无法解决的,我们需要加入一些判断才能解决。#include<stdio.h> #include<stdlib.h> int main(){ int n,coins=0,day=…… 题解列表 2024年11月06日 0 点赞 3 评论 103 浏览 评分:9.9
国王的烦恼——发工资,简单方法 摘要:解题思路:如果为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
金币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 评论 74 浏览 评分:0.0