不容易系列 (C语言代码) 摘要:解题思路:最后只剩下3只羊,所以每次都要拿剩下的羊减去1再乘以2注意事项:注意利用for循环和while循环参考代码:#include<stdio.h>int main(){ int n,a[1…… 题解列表 2019年03月13日 0 点赞 0 评论 265 浏览 评分:0.0
不容易系列 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main() { int N; cin>>N; int n; …… 题解列表 2018年05月13日 0 点赞 0 评论 515 浏览 评分:0.0
编写题解 1180: 不容易系列 摘要:解题思路:注意事项:参考代码:n=int(input()) for i in range(n): a=int(input()) y=3 for j in range(a…… 题解列表 2022年02月17日 0 点赞 0 评论 177 浏览 评分:0.0
不容易系列 (C语言代码) 摘要:解题思路:每一次减1乘2,有几个站就做几次就可以了注意事项:多项输入,记得每次初始化为3参考代码:#include<stdio.h> int main() { int n; int a; …… 题解列表 2018年12月04日 0 点赞 0 评论 314 浏览 评分:0.0
不容易系列 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cmath> #include<string> #include<algorithm> using na…… 题解列表 2019年04月09日 1 点赞 0 评论 322 浏览 评分:0.0
编写题解 1180: 不容易系列 摘要:解题思路:注意事项:参考代码:#include<stdio.h>void sum(int t){ int i; int x=3; for(i=1;i<=t;i++) { …… 题解列表 2023年01月04日 0 点赞 0 评论 112 浏览 评分:0.0
不容易系列-题解(Java代码) 摘要:解题思路:注意事项:参考代码:import java.util.Scanner; public class Main { private static void fab(int m) …… 题解列表 2021年02月16日 0 点赞 0 评论 699 浏览 评分:0.0
(简单易懂)不容易系列 (C语言代码) 摘要:参考代码:#include<stdio.h>#include<string.h>#include<math.h>int main(){ int n,i,m; scanf("%d",&n);…… 题解列表 2018年01月05日 0 点赞 0 评论 619 浏览 评分:0.0
不容易系列-题解(Java代码) 摘要:**题目:** 题目描述 你活的不容易,我活的不容易,他活的也不容易。不过,如果你看了下面的故事,就会知道,有位老汉比你还不容易。 重庆市郊黄泥板村的徐老汉(大号徐东海,简称XDH)这两年辛辛苦…… 题解列表 2020年02月12日 0 点赞 0 评论 462 浏览 评分:0.0
Java实现(简单易懂,逆推公式) 摘要:package com.edu.hhxy;import java.util.Scanner;/** * @author five-five * @link https://www.dotcpp.com…… 题解列表 2021年10月15日 0 点赞 0 评论 273 浏览 评分:0.0