[编程入门]选择排序-题解(C语言代码) 摘要: #include int main(){ int a[10]; int temp; for(int i=0;i…… 题解列表 2019年10月16日 0 点赞 0 评论 977 浏览 评分:0.0
DNA-题解(C语言代码) 摘要:DNA-题解(C语言描述) [原题链接:DNA-题解](https://blog.dotcpp.com/article/aedit1115 "原题链接:DNA-题解") #includ…… 题解列表 2019年10月16日 0 点赞 0 评论 643 浏览 评分:0.0
[编程入门]数组插入处理-题解(C语言代码) 摘要:### 第一种解法 ###### 因为要插入的数据存在数组的最后一位, ###### 又因为是数组是有序的, ###### 就可以从后边向前两两互换; #include int …… 题解列表 2019年10月16日 0 点赞 0 评论 613 浏览 评分:0.0
【密码】-题解(C++代码) by Zfans. 摘要:```cpp #include using namespace std; int main() { int M; cin >> M; for (int i…… 题解列表 2019年10月16日 0 点赞 0 评论 1025 浏览 评分:0.0
【数组的距离】-题解(C++代码) by Zfans. 摘要:```cpp #include #include using namespace std; int main() { int m, n; while (cin …… 题解列表 2019年10月16日 0 点赞 0 评论 1032 浏览 评分:0.0
[编程入门]自定义函数之数字后移-题解(C语言代码) 摘要:##重点## 1. 申请动态存储空间 2. 后移m个位置:从第n-m+1个位置开始打印. 3. 考虑到m可能大于n,取m除以n的余替换m. ```c #include //#incl…… 题解列表 2019年10月17日 0 点赞 0 评论 920 浏览 评分:0.0
[编程入门]数组插入处理-题解(C语言代码) 摘要:#include int main() { int a[10]; int num; for(int i=0; i…… 题解列表 2019年10月17日 0 点赞 0 评论 838 浏览 评分:0.0
[编程入门]自定义函数之数字后移-题解(C语言代码) 摘要:**#include** using namespace std; void deal(int a[],int b[],int m,int n); int main(){ int n;…… 题解列表 2019年10月17日 0 点赞 0 评论 676 浏览 评分:0.0
C语言训练-谁家孩子跑最慢* -题解(C语言代码) 摘要:不够简洁,但比较容易理解。 代码详情如下: ```c #include #define SUM 15 int main() { int a[3][3]={{7},{8},{9}}…… 题解列表 2019年10月18日 0 点赞 0 评论 709 浏览 评分:0.0
【绝对值排序】-题解(C语言代码) 摘要: #### 【绝对值排序】-题解(C语言描述) [原题链接:绝对值排序](https://www.dotcpp.com/oj/problem1169.html "原题链接:绝对值排序") …… 题解列表 2019年10月18日 0 点赞 0 评论 685 浏览 评分:0.0