2021-03-18

  • 输人整数,输出最大最小值
    public static void main(String[] args) {
        int[] numberOfInputs = new int[100];
        Scanner scanner = new Scanner(System.in);
        for (int i = 0; i <= 100; i++) {
            System.out.print("请输入一个整数(输入0结束):");
            numberOfInputs[i] = scanner.nextInt();
            int verification = numberOfInputs[i];//向数组输入值
            if (verification == 0){
                break;
            }//结束输入
        }
        int max = 0;
        int min = 0;
        for (int j = 0; j < numberOfInputs.length; j++) {
            if ## 标题(numberOfInputs[j]>numberOfInputs[max]){
                max = j;
            }//获取最大值下标
            if (numberOfInputs[j]<numberOfInputs[min]){
                min = j;
            }//获取最小值下标
        }
        System.out.println("最大值是:" + numberOfInputs[max]);
        System.out.println("最小值是:" + numberOfInputs[min]);
    }
  • 显示英文星期名称的缩写
    public static void main(String[] args) {
        int inputValue ;
        Scanner scanner = new Scanner(System.in);
        System.out.print("请输入数字1-7(输入0以结束):");
        for (int i = 0; i < 100; i++) {
            inputValue = scanner.nextInt();
            if (inputValue<8&&inputValue>0){
                System.out.print("今天是 ");
                if (inputValue == 1){
                    System.out.println("MON");
                }
                if (inputValue == 2){
                    System.out.println("TUE");
                }
                if (inputValue == 3){
                    System.out.println("WED");
                }
                if (inputValue == 4){
                    System.out.println("THC");
                }
                if (inputValue == 5){
                    System.out.println("FRI");
                }
                if (inputValue == 6){
                    System.out.println("SAT");
                }
                if (inputValue == 7){
                    System.out.println("SUN");
                }
            }
            else
                System.out.println("请重新输入");
        }
    }
  • 订购机票
    public static void main(String[] args) {
        int costOfProduction = 5000;
        int month = 0;
        System.out.println("请输入您的出行月份:1~12");
        Scanner scanner = new Scanner(System.in);
        month = scanner.nextInt();
        if ((month>=1&&month<4)||(month>10&&month<=12)){
            while (true) {
                System.out.println("请问您是头等舱还是经济舱?头等舱请输入1,经济舱请输入2");
                int cabin = scanner.nextInt();
                if (cabin == 1) {
                    System.out.println("您的机票价格为:" + costOfProduction * 0.5);
                    break;
                }
                if (cabin == 2) {
                    System.out.println("您的机票价格为:" + costOfProduction * 0.4);
                    break;
                }
                if (cabin != 1 && cabin != 2) {
                    System.out.println("请重新输入");
                    continue;
                }
            }
        }
        if (month>=4&&month<=10){
            while (true) {
                System.out.println("请问您是头等舱还是经济舱?头等舱请输入1,经济舱请输入2");
                int cabin = scanner.nextInt();
                if (cabin == 1) {
                    System.out.println("您的机票价格为:" + costOfProduction * 0.9);
                    break;
                }
                if (cabin == 2) {
                    System.out.println("您的机票价格为:" + costOfProduction * 0.6);
                    break;
                }
                if (cabin != 1 && cabin != 2) {
                    System.out.println("请重新输入");
                    continue;
                }

            }
        }
    }

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值