Java的一些练习

1.飞机票的购买

package com.zaizai.hello.over;

import java.util.Scanner;

public class hello {
    public static void main(String[] args) {
        Scanner sc=new Scanner(System.in);
        System.out.println("机票原价");
        double price= sc.nextDouble();
        System.out.println("月份");
        int month= sc.nextInt();
        System.out.println("类型(头等舱或者经济舱)");
        String type= sc.next();
        double re=cale(price,month,type);
        System.out.println(re);
    }
    public static double cale(double money,int month,String type) {
        if(month>=5&&month<=10){
            switch(type){
                case"头等舱":
                    money*=0.9;
                    break;
                case"经济舱":
                    money*=0.85;
                    break;
                default:
                    System.out.println("wrong space");
                    money=-1;
                    break;
            }
        }
        else if(month==11||month==12||month>=1&&month<=4){
            switch(type){
                case"头等舱":
                    money*=0.7;
                    break;
                case"经济舱":
                    money*=0.65;
                    break;
                default:
                    System.out.println("wrong space");
                    money=-1;
                    break;
            }
        }
        else {
            System.out.println("wrong month");
            money=-1;
        }
        return money;
    }
}

2.101到200素数的输出

package com.zaizai.hello.text;

public class text2 {
    public static void main(String[] args) {
        int re=0;
        for(int i=101;i<=200;i++){
            re=sushu(i);
            if(re==0){
                System.out.println(i);
            }
        }
    }
    public static int sushu(int a) {
        for(int i=2;i<a/2;i++){
            if(a%i==0){
                return 1;
            }
        }
    return 0;
    }
}
package com.zaizai.hello.text;

public class text2_2 {
    public static void main(String[] args) {

        for(int i=101;i<=200;i++){
            boolean flag=true;
            for(int j=2;j<i/2;j++){
                if(i%j==0){
                   flag=false;
                   break;
                }
            }
            if(flag)
                System.out.print(i+'\t');
        }
    }
}
  • 1
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值