题解 2833: 金币

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

金币666简单算法

摘要:#include<stdio.h> int main(){ int i=1,d=0,n,s=0,c; scanf("%d",&n); while(d<n){ c=i; whi……

简单的数学题

摘要:解题思路:题目可以理解为n天,每天给n块,换算成公式就是x=x+n*n,所以我们可以按公式算出来,然后增加一个判断,是否为1+2+3+4……+n的值,不是就减去。注意事项:参考代码:#include<……

国王的金币

摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){    int day,money=0,mmoney=1,i……

c语言代码解决问题

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){    int n, sum = 0, day_earn = 1,i;    scanf("%d", &n);  ……

编写题解 2833: 金币

摘要:解题思路:注意事项:参考代码:#include <stdio.h> #include<math.h> int main() {    int a,sum = 0,m = 1;     int ……