java输入三个数按从小到大的顺序输出_OJ刷题之《输入三个字符串,按由小到大的顺序输出》...
时间: 2023-12-07 07:23:28 浏览: 68
您好!根据您的问题,这里提供一个Java程序,可以输入三个数,按从小到大的顺序输出。代码如下:
```java
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
System.out.println("请输入三个数:");
int a = sc.nextInt();
int b = sc.nextInt();
int c = sc.nextInt();
if (a > b) {
int temp = a;
a = b;
b = temp;
}
if (a > c) {
int temp = a;
a = c;
c = temp;
}
if (b > c) {
int temp = b;
b = c;
c = temp;
}
System.out.println("从小到大排序后的结果为:" + a + " " + b + " " + c);
}
}
```
这个程序会提示用户输入三个数,然后使用三个if语句,分别对这三个数进行比较和交换,最后输出排序后的结果。希望能够帮到您!
阅读全文