[编程入门]最大公约数与最小公倍数-题解(C语言代码) 摘要:#include int main() { int i, j, t, k; int m, n; int gong_yue; int gong_bei = 0; //输入两个…… 题解列表 2020年05月21日 0 点赞 0 评论 1196 浏览 评分:9.9
[编程入门]有规律的数列求和-题解(C语言代码) 摘要:/* 有一分数序列: 2 / 1 3 / 2 5 / 3 8 / 5 13 / 8 21 / 13.....…… 题解列表 2020年05月21日 0 点赞 0 评论 864 浏览 评分:9.9
[编程入门]自定义函数之数字后移-题解(C语言代码) 摘要:```c #include void move(int,int*,int); int main(){ int n,m; int a[100]; scanf("%d",&n); f…… 题解列表 2020年05月21日 0 点赞 0 评论 836 浏览 评分:9.9
汽水瓶-题解(C++代码) 摘要:```cpp #include using namespace std; int qishui(int w){ int m,n,x,y,sum=0; m=w/3; n=w%3; …… 题解列表 2020年05月22日 0 点赞 2 评论 763 浏览 评分:9.9
逃跑大作战-题解(C++代码) 摘要:emmm这题卡了挺久的,发现没有题解就来水一发吧 大家可以先去这里看看这两道类似的,我也是看完才有所启发 https://blog.csdn.net/ZCMU_2024/article/detai…… 题解列表 2020年05月24日 0 点赞 0 评论 1008 浏览 评分:9.9
大小写转换-题解(C语言代码) 摘要:对于这类题目,主要明白如何将小写字母更换为大写子母,这里以C内容作为解析 在ASCII码在ASCII码中,小写字母的ASCII码分布在第97-122位,大写字母的ASCII码分布在65-90位,前后…… 题解列表 2020年05月24日 0 点赞 0 评论 1157 浏览 评分:9.9
明明的随机数-不用排序和去重-超简洁(C++代码) 摘要:**这里采用:牺牲额外空间来免去排序和去重操作** **** **即:开辟一个1000长度的数组并初始值都为1,遇到一个随机数就把数组值赋值为0.** **结果:输出数组值为0的下标即可** …… 题解列表 2020年05月24日 0 点赞 0 评论 949 浏览 评分:9.9
汽水瓶-题解(Java代码) 摘要: - #### 行内代码  ```java import java.util.Scanner…… 题解列表 2020年05月25日 0 点赞 0 评论 1029 浏览 评分:9.9
简单易懂 递归 摘要:```c #include void rec(int a[], int i, int n) { int j, k, t, x; if(n != i) { k = i; …… 题解列表 2020年05月25日 0 点赞 0 评论 1121 浏览 评分:9.9
大整数排序-题解(C++代码) 摘要:重载 ``` #include #include #include #include #include using namespace std; int n,m; struct bi…… 题解列表 2020年05月26日 0 点赞 0 评论 1101 浏览 评分:9.9