输入三个整数从小到大java
时间: 2023-05-16 12:05:32 浏览: 122
代码如下:
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
int a = scanner.nextInt();
int b = scanner.nextInt();
int c = scanner.nextInt();
int temp;
if (a > b) {
temp = a;
a = b;
b = temp;
}
if (a > c) {
temp = a;
a = c;
c = temp;
}
if (b > c) {
temp = b;
b = c;
c = temp;
}
System.out.println(a + " " + b + " " + c);
}
}
这是一个简单的排序算法,可以将输入的三个整数从小到大排序。
关于 lua closure factory 完整代码,我不是很清楚你具体需要的是什么,可以提供更多的信息吗?
中文加密是一种加密算法,可以将中文文本转换为一串密文。常见的中文加密算法有凯撒密码、栅栏密码等。你需要具体说明你需要哪种加密算法的代码。
阅读全文