教你两秒钟解决 金航 问题(小黑子也会=_=)
摘要:解题思路: 设置一个条件,当符合该条件,金币数加1 =_=||注意事项: 天冷了,多喝热水>_< 参考代码:#include <stdio.h>int main(){ ……
题解 2833: 金币 (使用数学公式)
摘要:| 天数 | 1 | 2 | 3 | 4| 5 |6 | 7 | 8 | 9 | 10 |...|
| :------------ | :------------ | :-……
2833: 金币(简单易懂)
摘要:```c
#include
#include
int main()
{
int n;
int sum = 0;
scanf("%d", &n);
int num;
int ……
用for嵌套解决国王的烦恼——发工资(C语言)
摘要:简单的for嵌套是无法解决的,我们需要加入一些判断才能解决。#include<stdio.h>
#include<stdlib.h>
int main(){
int n,coins=0,day=……