首页 > 代码库 > 运算符和表达式 、 分支结构 3 个数值进行升序排列
运算符和表达式 、 分支结构 3 个数值进行升序排列
import java.util.Scanner;public class SortOfThree { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); System.out.println("请依次输入三个整数:a,b,c(以空格隔开)"); int a = scanner.nextInt(); int b = scanner.nextInt(); int c = scanner.nextInt(); scanner.close(); System.out.println("您输入的是:"); System.out.println("a=" + a + ", b=" + b + ", c=" + c); int temp = 0; 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("升序排列后,结果为:"); System.out.println("a=" + a + ", b=" + b + ", c=" + c); }}
运算符和表达式 、 分支结构 3 个数值进行升序排列
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。