1043: [编程入门]三个数字的排序 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a,b,c; cin>>a>>b>>c; if(a>b){in…… 题解列表 2022年10月20日 0 点赞 0 评论 305 浏览 评分:9.9
三个数排序 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;#include <algorithm> int main(){ int a,b,c; …… 题解列表 2022年10月20日 0 点赞 0 评论 221 浏览 评分:9.9
1043一行解(Python) 摘要:注意事项:可以参考一下其他人的一行解,体会其中的不同点参考代码:for data in [i for i in sorted(map(int, input().split()))] : print(d…… 题解列表 2022年11月05日 0 点赞 0 评论 266 浏览 评分:9.9
C语言 三个数字的排序& 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>#define Long 3 //改变Long的值,能输入更多的数并排…… 题解列表 2022年11月21日 0 点赞 0 评论 222 浏览 评分:9.9
宏定义函数 摘要:参考代码 #include #define min(x,y,z) xz?y:z) int main(void) { int a,b,c,m,n…… 题解列表 2022年12月11日 0 点赞 0 评论 226 浏览 评分:9.9
[编程入门]三个数字的排序 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main( ){int a, b, c;cin>>a>>b>>c;if(a>b){in…… 题解列表 2022年12月14日 0 点赞 0 评论 241 浏览 评分:9.9
(笨方法)三个数字的排序 摘要:#include int main(){ int a,b,c,t; scanf("%d%d%d",&a,&b,&c); if(a>b){ t=a;a=b;b=t; } …… 题解列表 2023年01月08日 0 点赞 0 评论 214 浏览 评分:9.9
1043: [编程入门]三个数字的排序 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b,c; scanf("%d%d%d",&a,&b,&c); printf("%d %d…… 题解列表 2023年01月27日 0 点赞 1 评论 612 浏览 评分:9.9
三个数的冒泡排序 摘要:解题思路:利用冒泡排序注意事项:参考代码:#include<stdio.h>int main(){ int a[3]; int i,j; for(i=0;i<3;i++) scanf("%d",&a[…… 题解列表 2023年05月08日 0 点赞 0 评论 155 浏览 评分:9.9
三个数字排序 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int a,b,c; cin>>a>>b>>c…… 题解列表 2023年05月20日 0 点赞 0 评论 289 浏览 评分:9.9