不容易系列 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b,i; scanf("%d",&a); while(a--){ int sum=3; scan…… 题解列表 2019年03月16日 0 点赞 0 评论 262 浏览 评分:0.0
不容易系列 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cmath> #include<string> #include<algorithm> using na…… 题解列表 2019年04月09日 1 点赞 0 评论 322 浏览 评分:0.0
不容易系列 (C语言代码)(点我有惊喜) 摘要:解题思路:利用while和for循环 注意事项:注意等量关系即可参考代码:#include<stdio.h>int main(void){ int n, a[30],i,sum; scanf("…… 题解列表 2019年04月09日 0 点赞 0 评论 387 浏览 评分:0.0
不容易系列-题解(C语言代码)值得推荐 摘要:思路:利用递归的思想。如果没有收费站的花,则返回rest(本题中为3) 如果有收费站且数量为n,则可以返回n-1个收费站的情况下有的羊的个数-1再乘2 long long int tol(in…… 题解列表 2019年11月29日 0 点赞 0 评论 814 浏览 评分:9.9
不容易系列-题解(C++代码)公差为2的等差数列 摘要:其实题目很简单,本质上就是求等差数列的某一项 通项公式为:An=A1+(n-1)*d ```cpp #include using namespace std; int main() { …… 题解列表 2019年12月12日 0 点赞 0 评论 646 浏览 评分:7.0
不容易系列-题解(Java代码) 摘要:**题目:** 题目描述 你活的不容易,我活的不容易,他活的也不容易。不过,如果你看了下面的故事,就会知道,有位老汉比你还不容易。 重庆市郊黄泥板村的徐老汉(大号徐东海,简称XDH)这两年辛辛苦…… 题解列表 2020年02月12日 0 点赞 0 评论 462 浏览 评分:0.0
不容易系列-题解(C语言代码) 摘要:```c #pragma warning(disable:4996) #include #include #include #include int main() { …… 题解列表 2020年02月13日 0 点赞 0 评论 291 浏览 评分:0.0
Manchester-【不容易系列-法2】 摘要:####解题思路: 1. 递推写出过每一站剩余的羊数目 1. 第一站剩余(n+2)/2 1. 第二站剩余(n+2+4)/4 1. 第三站剩余(n+2+4+8)/8 1. 第a站剩余(n+2+…… 题解列表 2020年03月04日 0 点赞 0 评论 528 浏览 评分:8.4
不容易系列-题解(Java代码) 摘要:解题思路:注意事项:参考代码:import java.util.Scanner; public class Main { private static void fab(int m) …… 题解列表 2021年02月16日 0 点赞 0 评论 699 浏览 评分:0.0
优质题解 不容易系列 递归求解 摘要:解题思路:本人在写时,发现可以用递归来写。什么是递归:(忙人请略过)程序调用自身的编程技巧称为递归。递归做为一种算法在程序设计语言中广泛应用。递归,就是在运行的过程中调用自己。 一个过程或函数在其定义…… 题解列表 2021年09月08日 0 点赞 0 评论 264 浏览 评分:9.9