1043: [编程入门]三个数字的排序 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int i,j,t,k; int a[3];&n…… 题解列表 2025年11月01日 1 点赞 0 评论 676 浏览 评分:0.0
给你们看看不用循环的办法 摘要:解题思路:注意事项:参考代码:#include<stdio.h>//数字排序int main(){ int a=0; int b=0; int c=0; scanf("…… 题解列表 2025年12月21日 0 点赞 0 评论 402 浏览 评分:0.0
1043:三个数按从小到大排序 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b,c,t; scanf("…… 题解列表 2026年04月01日 0 点赞 0 评论 216 浏览 评分:0.0
超简单的解题思路 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){int p[3];int i=0;for(i=0;i<3;i++){ scanf(…… 题解列表 2026年06月27日 0 点赞 0 评论 119 浏览 评分:0.0
无函数纯判断分支嵌套标准代码 摘要:解题思路:本题目也可以自定义函数求两数较小值,然后嵌套一次排序3个数。这里我给新手小白编写最基础最不需要动脑子的纯判断分支结构嵌套注意事项:参考代码:#include <stdio.h>i…… 题解列表 2026年07月17日 0 点赞 0 评论 52 浏览 评分:0.0
三个数字的排序-三句话 摘要:解题思路:注意事项:参考代码:nums = sorted([int(x) for x in input().split()])s=" ".join(map(str,nums))pr…… 题解列表 2026年07月23日 0 点赞 0 评论 54 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题10.1 (Java代码) 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void Sort(int a,in…… 题解列表 2017年07月08日 0 点赞 0 评论 1486 浏览 评分:2.0
1043: [编程入门]三个数字的排序 摘要:解题思路:哔哔哔注意事项:bibibi参考代码:#include<iostream>using namespace std;int main(){ int a,b,c,x1,x2,x3,x4; …… 题解列表 2023年02月05日 0 点赞 0 评论 455 浏览 评分:2.0
牛子嗯了之打胶论I-序言 摘要:解题思路:冒泡排序通解 , 把中括号,3,2改一下就是通用答案了注意事项:参考代码:#include <stdio.h>int d[3],i,j,k;int main(){ for (i=0;i…… 题解列表 2023年03月23日 0 点赞 1 评论 383 浏览 评分:4.7
[编程入门]三个数字的排序 (Python代码) 摘要:```python a, b, c= map(int,input().split()) # 表示的是一次能够输入多个值,依照空格进行分割。 sum = [a,b,c] # 把数值放入列…… 题解列表 2020年03月18日 0 点赞 0 评论 1178 浏览 评分:5.5