编写题解 1025: [编程入门]数组插入处理 摘要:解题思路:冒泡排序,适合新手理解注意事项:题目并没有说必须要插入法,所以只要把输入的所有数重新排序即可参考代码:#include<bits/stdc++.h> using namespace std;…… 题解列表 2022年03月21日 0 点赞 0 评论 202 浏览 评分:0.0
。。随便写写。。:C语言程序设计教程(第三版)课后习题7.4 (C语言代码) 摘要:解题思路:从后往前比较,每个数赋给后面的数,若输入的数大于一个数,则把输入的数赋给这个数的后一位数,然后停止赋值,跳出循环。注意事项:第二个for中i要=8,应为前面才赋到a[8]。参考代码:#inc…… 题解列表 2019年02月17日 1 点赞 0 评论 426 浏览 评分:0.0
1025[编程入门]数组插入处理 摘要:```c #include int main(){ int a[10],number; int i,j; for (i = 0; i < 10; i++) …… 题解列表 2021年07月07日 0 点赞 0 评论 187 浏览 评分:0.0
[编程入门]数组插入处理-题解(C语言代码) 摘要:# MarkDown编辑器基本使用说明 **如果这是您第一次使用MarkDown编辑器,建议先阅读这篇文章了解一下Markdown的基本使用方法。** ```c #include int …… 题解列表 2019年10月20日 0 点赞 0 评论 387 浏览 评分:0.0
1025: [编程入门]数组插入处理 摘要:#include<stdio.h> int main() { int a[9]; int i=0; int x; for(;i<=8;i++) {…… 题解列表 2023年03月12日 0 点赞 0 评论 51 浏览 评分:0.0
题解11111111111111111111111 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h> #include <string.h>struct student{int n;char na…… 题解列表 2021年09月16日 0 点赞 0 评论 118 浏览 评分:0.0
junmu1025:(C语言描述:单循环实现降序与升序的插入,16行哦(#^.^#)) 摘要:解题思路与注意事项: 1.设置flag技术确认序列为升序还是降序。 2.变量pd用来确认插入的值a[9]只插一遍 …… 题解列表 2018年12月21日 1 点赞 0 评论 465 浏览 评分:0.0
[编程入门]数组插入处理-题解(C语言代码) 摘要:原题链接:[[编程入门]数组插入处理](http://https://www.dotcpp.com/oj/problem1025.html "[编程入门]数组插入处理") 解题思路: 我们…… 题解列表 2019年07月12日 0 点赞 0 评论 519 浏览 评分:0.0
数组插入处理,从最后一个往前取值 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a[10]; int b,i,k; for(i=0;i<9;i++){ …… 题解列表 2024年12月18日 1 点赞 0 评论 331 浏览 评分:0.0
1025: [编程入门]数组插入处理 C++版 摘要:解题思路:冒泡排序注意事项:参考代码:#include<iostream>using namespace std;long long a[15],z;int main(){ for(int i=1;i…… 题解列表 2022年06月19日 0 点赞 0 评论 106 浏览 评分:0.0