Java 控制结构练习题

练习1

某人有100,000元,每经过一次路口,需要交费,规则如下:

1)当现金>50000时,每次交5%

2)当现金<=50000时,每次交1000

编程计算该人可以经过多少次路口,要求:使用while + break方式完成

public class HomeWork01 {
    public static void main(String[] args) {
        double money = 100000;
        int road = 0;
        while (true) {
            if (money > 50000) {
                //剩余多少钱
                money = money - (money * 0.05);
                road++;
            }else if (money>1000){
                money = money - 1000;
                road++;
            }else {//钱不够
                break;
            }
        }
        System.out.println(road);
    }
}

练习2

判断一个整数是否是水仙花数,所谓水仙花数是指一个3位数,其各个位上数字立方和等于其本身。例如:153=111+ 333+555

public class HomeWork04 {
    public static void main(String[] args) {
        Scanner myScanner = new Scanner(System.in);
        System.out.println("请输入一个数字");
        try {
            int number = myScanner.nextInt();
            int a = number/100;//百位
            int b = number%100/10;//十位
            int c = number%10;//个位
            if(number==a*a*a+b*b*b+c*c*c){
                System.out.println(number+"是水仙花数");
            }
            System.out.println("输入的数字不是水仙花数");
        } catch (InputMismatchException e) {
            System.out.println("输入的不是整数");
        }
    }
}

练习3

输出1-100之间的不能被5整除的数,每5个一行

public class HomeWork05 {
    public static void main(String[] args) {
        int count = 0;
        for (int i = 1; i <= 100; i++) {
            if (i % 5 != 0) {
                //print标准输出
                System.out.print(i+"\t");
                count++;
                if (count % 5 == 0) {
                    System.out.println();
                }
            }
        }
    }
}

练习4

输出小写的a-z以及大写的Z-A

public class HomeWork06 {
    public static void main(String[] args) {
        //输出小写的a-z以及大写的Z-A
        //考察我们对a-z编码及for的综合使用
        //思路分析
        //1.'b'= 'a'+1,c=‘a’+2
        //2.使用for搞定
        for (char c1 = 'a'; c1 <= 'z'; c1++) {
            System.out.print(c1+" ");
        }
        System.out.println();
        for (char c1 = 'Z'; c1 >= 'A'; c1--) {
            System.out.print(c1 + " ");
        }
    }
}

练习5

求出1-1/2+1/3-1/4…1/100的和

public class HomeWork07 {
    public static void main(String[] args) {
     /* 求出1-1/2+1/3-1/4+1/5.....1/100的和
        思路分析
        1. 1-1/2+1/3-1/4+1/5.....1/100 = (1/1)-(1/2)+(1/3)-(1/4)+(1/5).....(1/100)
        2. 从上面分析可以看到
           (1).一共有100个数。分子为1,分母为1-100
           (2).还发现当分母是奇数时,前面是+,分母是偶数时候,前面是-
           (3).使用for + 判断即可完成
           (4).把结果存到 double sum
           (4).这里有一个隐藏的陷阱,要把公式中的分子1写成1.0,才能得到精确的小数
      */
        double sum = 0;
        for (int i = 1; i <= 100; i++) {
            if (i % 2 != 0) {
                sum += 1.0/i;
            } else {
                sum -= 1.0/i;
            }
        }
        System.out.println(sum);
    }
}

练习6

求1+(1+2) +(1+2+3)+(1+2+3+4) +…+(1+2+3+…+100)的结果

public class HomeWork08 {
    public static void main(String[] args) {
       //求(1)+(1+2)+(1+2+3)+(1+2++4)+(1+2+3+...+100)
       // 思路分析
       //1.一共有100个项相加
       //2.每一项的数字在逐渐增加
       //3.很像一个双层循环
       //4.使用 sum 进行累加即可
        int sum =0;
        for (int i = 1; i <= 100; i++) {
            for (int j = 0; j <=i ; j++) {
                sum+=j;
            }
        }
        System.out.println(sum);

    }
}
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值