不容易系列 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b,i; scanf("%d",&a); while(a--){ int sum=3; scan…… 题解列表 2019年03月16日 0 点赞 0 评论 345 浏览 评分:0.0
Java实现(简单易懂,逆推公式) 摘要:package com.edu.hhxy;import java.util.Scanner;/** * @author five-five * @link https://www.dotcpp.com…… 题解列表 2021年10月15日 0 点赞 0 评论 327 浏览 评分:0.0
不容易系列-题解(Java代码) 摘要:解题思路:注意事项:参考代码:import java.util.Scanner; public class Main { private static void fab(int m) …… 题解列表 2021年02月16日 0 点赞 0 评论 734 浏览 评分:0.0
不容易系列 摘要:```c #include int hanshu(int k);//函数声明 int hanshu (int k)//函数定义 { int n=0,i;//n 为第K站的绵羊的数量 …… 题解列表 2021年12月26日 0 点赞 0 评论 197 浏览 评分:0.0
不容易系列-题解(C语言代码) 摘要:```c #pragma warning(disable:4996) #include #include #include #include int main() { …… 题解列表 2020年02月13日 0 点赞 0 评论 420 浏览 评分:0.0
不容易系列-题解(Java代码) 摘要:**题目:** 题目描述 你活的不容易,我活的不容易,他活的也不容易。不过,如果你看了下面的故事,就会知道,有位老汉比你还不容易。 重庆市郊黄泥板村的徐老汉(大号徐东海,简称XDH)这两年辛辛苦…… 题解列表 2020年02月12日 0 点赞 0 评论 571 浏览 评分:0.0
Hifipsysta-1180-不容易系列(C++代码)递归法 摘要:```cpp #include using namespace std; int a_(int n){ if(n==0){ return 3; } …… 题解列表 2022年02月05日 0 点赞 0 评论 226 浏览 评分: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 评论 226 浏览 评分:0.0
不容易系列 (C语言代码)(点我有惊喜) 摘要:解题思路:利用while和for循环 注意事项:注意等量关系即可参考代码:#include<stdio.h>int main(void){ int n, a[30],i,sum; scanf("…… 题解列表 2019年04月09日 0 点赞 0 评论 508 浏览 评分:0.0
不容易系列 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cmath> #include<string> #include<algorithm> using na…… 题解列表 2019年04月09日 1 点赞 0 评论 402 浏览 评分:0.0