优质题解
Yu金币简洁易懂写法
摘要:
##解析:
本题无法直接循环天数和金币数。
但是发现一个规律,连续的n天都发放n枚金币。
我们可以用while循环解决连续n天发放n枚金币。
**我的解法:**
sum记……
***********金币****************
摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int a=0,n,sum=0; cin>>n……
用for嵌套解决国王的烦恼——发工资(C语言)
摘要:简单的for嵌套是无法解决的,我们需要加入一些判断才能解决。#include<stdio.h>
#include<stdlib.h>
int main(){
int n,coins=0,day=……
金币获取问题(python易理解写法)
摘要:解题思路:此题由于金币获取的方法,所以不能直接遍历天数和金币,所以要定义一个变量去过渡参考代码:n = int(input())day = 0 #天数sum = 0 #金币数for i i……
题解 2833: 金币 (使用数学公式)
摘要:| 天数 | 1 | 2 | 3 | 4| 5 |6 | 7 | 8 | 9 | 10 |...|
| :------------ | :------------ | :-……