C语言程序设计教程(第三版)课后习题10.1 (Java代码) 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void Sort(int a,in…… 题解列表 2017年07月08日 0 点赞 0 评论 968 浏览 评分:2.0
1043: [编程入门]三个数字的排序 摘要:解题思路:哔哔哔注意事项:bibibi参考代码:#include<iostream>using namespace std;int main(){ int a,b,c,x1,x2,x3,x4; …… 题解列表 2023年02月05日 0 点赞 0 评论 92 浏览 评分:2.0
[编程入门]三个数字的排序-题解(C语言代码) 摘要:# 运用插入排序思想解三数排序 **对于三个数的排序似乎有点简单,但是我们可以利用插入排序放进去,并不是全都是插入排序,而是算法的思想,省去不少比较的功夫** **代码如下** …… 题解列表 2019年06月15日 1 点赞 0 评论 525 浏览 评分:0.0
1043原来是这C语言 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include <math.h>int main (){ int max,min,mid,a,b,c;scanf("%d %d %d"…… 题解列表 2021年11月05日 0 点赞 0 评论 140 浏览 评分:0.0
题解1043dvdfvdfvdfbvdfbdfbdfvdv (C++代码) 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>#define SWAP(a,b) {a=a^b,b=a^b}using namespace std;int main()…… 题解列表 2018年10月28日 0 点赞 0 评论 397 浏览 评分:0.0
[编程入门]三个数字的排序-题解(C语言代码) 摘要: #include int main() { int a,b,c; int t; scanf("%d%…… 题解列表 2019年10月27日 0 点赞 0 评论 312 浏览 评分:0.0
三个数字的排序 摘要:解题思路:利用数组+sort进行排序注意事项:注意数组的下标参考代码:#include<iostream>#include<fstream>#include<algorithm>using names…… 题解列表 2022年04月29日 0 点赞 0 评论 146 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题10.1 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b,c,temp; scanf("%d%d%d",&a,&b,&c); if(a <= b) { …… 题解列表 2018年03月13日 0 点赞 0 评论 721 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题10.1 (C语言代码) 摘要:#include<stdio.h>int main(){ int a,b,c,d; scanf("%d%d%d",&a,&b,&c); if(a>b) { d=a; a=b; b=d; } if…… 题解列表 2019年02月11日 0 点赞 0 评论 406 浏览 评分:0.0
题解 1043: [编程入门]三个数字的排序 摘要:解题思路:注意事项:用&&参考代码:#include<iostream>using namespace std;int main(){ int a,b,c; cin>>a>>b>>c; …… 题解列表 2023年12月17日 0 点赞 0 评论 67 浏览 评分:0.0