三个数的排序-简单选择排序 摘要:解题思路:注意事项:参考代码:#include <iostream>#include <cstring>#include <algorithm>using namespace std;void cho…… 题解列表 2023年11月10日 0 点赞 0 评论 253 浏览 评分:0.0
c代码记录之n个数的排序 摘要:解题思路:选择排序法注意事项:参考代码:直接输入一组数进行排序#include<stdio.h> #include<stdlib.h> //创建函数用于数组排序 void sort(in…… 题解列表 2023年11月14日 0 点赞 0 评论 180 浏览 评分:0.0
三个数字的排序 摘要:解题思路:根据“三个数找最大值”进行细化注意事项:参考代码:#include <stdio.h>int main(){ int a, b, c; scanf("%d%d%d", &a, &b, &c)…… 题解列表 2023年11月30日 0 点赞 0 评论 169 浏览 评分:0.0
[编程入门]三个数字的排序(C语言指针方法) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b,c,*p1,*p2,*p3,*p; scanf("%d %d %d",&a,&b,&…… 题解列表 2023年12月04日 0 点赞 0 评论 224 浏览 评分:0.0
1043: [编程入门]三个数字的排序 C语言 冒泡排序 摘要:解题思路:冒泡排序注意事项:参考代码:#define _CRT_SECURE_NO_WARNINGS#include <stdio.h>int main(void){ int a, b, c,t; s…… 题解列表 2023年12月08日 0 点赞 0 评论 198 浏览 评分:0.0
1043: [编程入门]三个数字的排序(插入排序思想) 摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int main(){ int a[3] = {0}; for (int…… 题解列表 2023年12月14日 0 点赞 0 评论 223 浏览 评分:0.0
题解 1043: [编程入门]三个数字的排序 摘要:解题思路:注意事项:用&&参考代码:#include<iostream>using namespace std;int main(){ int a,b,c; cin>>a>>b>>c; …… 题解列表 2023年12月17日 0 点赞 0 评论 202 浏览 评分:0.0
海绵宝宝来学C~题解 1043: [编程入门]三个数字的排序 摘要:#####解题思路: 假设题目的是理想状态,输入的正整数都是不重复的 我们用简单的if-else函数判断就可以把3个数分别区别大小和排序了 #####if-else参考代码: ```c …… 题解列表 2023年12月26日 0 点赞 0 评论 268 浏览 评分:0.0
题解 1043: [编程入门]三个数字的排序 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int a,b,c; cin>>a>>b>>c…… 题解列表 2023年12月30日 0 点赞 0 评论 228 浏览 评分:0.0
1043: [编程入门]三个数字的排序 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int a,b,c; cin>>a>>b>>c…… 题解列表 2023年12月30日 0 点赞 0 评论 222 浏览 评分:0.0