不容易系列 (Java代码) 摘要:解题思路:注意事项:参考代码:public class 不容易系列 { public static void main(String[] args) { // TODO Auto-generated…… 题解列表 2018年05月01日 0 点赞 0 评论 564 浏览 评分:0.0
Hifipsysta-1180-不容易系列(C++代码)递归法 摘要:```cpp #include using namespace std; int a_(int n){ if(n==0){ return 3; } …… 题解列表 2022年02月05日 0 点赞 0 评论 188 浏览 评分:0.0
不容易系列 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int f(int n);int f(int n) { int i, a=3; for(i=0; i<n; i++) { …… 题解列表 2018年07月26日 0 点赞 0 评论 369 浏览 评分:0.0
不容易系列 (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语言代码)(点我有惊喜) 摘要:解题思路:利用while和for循环 注意事项:注意等量关系即可参考代码:#include<stdio.h>int main(void){ int n, a[30],i,sum; scanf("…… 题解列表 2019年04月09日 0 点赞 0 评论 387 浏览 评分:0.0
1180: 不容易系列(逆向思维求解) 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int T; cin >> T; while (T--) { int…… 题解列表 2024年07月13日 0 点赞 0 评论 74 浏览 评分:0.0
不容易系列(递推) 摘要:解题思路:递推注意事项:参考代码:#include<iostream>#include<cmath>usingnamespacestd;in…… 题解列表 2025年01月21日 0 点赞 0 评论 29 浏览 评分:0.0
不容易系列-题解(C语言代码) 摘要:```c #pragma warning(disable:4996) #include #include #include #include int main() { …… 题解列表 2020年02月13日 0 点赞 0 评论 291 浏览 评分:0.0
不容易系列 摘要:```c #include int hanshu(int k);//函数声明 int hanshu (int k)//函数定义 { int n=0,i;//n 为第K站的绵羊的数量 …… 题解列表 2021年12月26日 0 点赞 0 评论 147 浏览 评分:0.0
不容易系列-题解(C++代码)公差为2的等差数列 摘要:其实题目很简单,本质上就是求等差数列的某一项 通项公式为:An=A1+(n-1)*d ```cpp #include using namespace std; int main() { …… 题解列表 2019年12月12日 0 点赞 0 评论 646 浏览 评分:7.0