第四次Java作业

上机练习

1.输入一个年份,判断是不是闰年(能被4整除但不能被100整除,或者能被400整除)

package test;

import java.util.Scanner;

public class Test1 {

    /**
     * @param args
     */
    public static void main(String[] args) {
        // TODO Auto-generated method stub
        Scanner input = new Scanner(System.in);
        System.out.println("输入一个年份");
        int year = input.nextInt();
        if (year % 4 == 0 && year % 100 != 0 || year % 400 == 0) {
            System.out.println("输入的年份是闰年");
        } else {
            System.out.println("输入的年份不是闰年");
        }

    }

}

2.输入一个4位会员卡号,如果百位数字是随机数,就输出是幸运会员,否则就输出不是.

package test;

import java.util.Random;
import java.util.Scanner;

public class Test2 {

    /**
     * @param args
     */
    public static void main(String[] args) {
        // TODO Auto-generated method stub
        Random r = new Random();
        System.out.println("请输入四位会员数");
        int result = r.nextInt();
        Scanner input = new Scanner(System.in);
        int vip = input.nextInt();
        if (vip / 100 % 10 == result) {
            System.out.println("您是幸运会员");

        } else {
            System.out.println("您不是幸运会员");
        }
        System.out.println(result);
    }

}

3.已知函数,输入x的值,输出对应的y的值.
     x + 3 ( x > 0 )
y = 0 ( x = 0 )
     x*2 –1 ( x < 0 )

package test;

import java.util.Scanner;

public class Test3 {

    /**
     * @param args
     */
    public static void main(String[] args) {
        // TODO Auto-generated method stub
        Scanner input = new Scanner(System.in);
        System.out.println("输入一个数x");
        double x = input.nextDouble();
        double y;
        if (x > 0) {
            y = x + 3;
            System.out.println(y);

        } else if (x == 0) {
            y = 0;
            System.out.println(y);
        } else {
            y = x * 2 - 1;
            System.out.println(y);
        }

    }

}

 

4.输入三个数,判断能否构成三角形(任意两边之和大于第三边)

package test;

import java.util.Scanner;

public class Test4 {

    /**
     * @param args
     */
    public static void main(String[] args) {
        // TODO Auto-generated method stub
        Scanner input = new Scanner(System.in);
        System.out.println("请输入三个数");
        int a = input.nextInt();
        int b = input.nextInt();
        int c = input.nextInt();
        if (a + b > c && a + c > b && b + c > a) {
            System.out.println("输入的三个数能构成三角形");
        } else {
            System.out.println("输入的三个数不能构成三角形");
        }
    }

}

作业
1 输入年份月份,输出该月的天数(闰年2月29天,条件参考上机练习1)

package boke;

import java.util.Scanner;

public class Boke1 {

    /**
     * @param args
     */
    public static void main(String[] args) {
        // TODO Auto-generated method stub
        Scanner input = new Scanner(System.in);
        System.out.println("输入一个年份");
        int year = input.nextInt();
        System.out.println("请输入一个月份");
        int m = input.nextInt();
        if (year % 4 == 0 && year % 100 != 0 || year % 400 == 0) {
            System.out.println("输入的年份是闰年");
            switch (m) {
            case 4:
            case 6:
            case 9:
            case 11:
                System.out.println("30");
                break;
            case 2:
                System.out.println("29");
                break;
            case 1:
            case 3:
            case 5:
            case 7:
            case 8:
            case 10:
            case 12:
                System.out.println("31");
                break;
            default:
                System.out.println("输入的月份不合法");
                break;
            }

        } else {
            System.out.println("输入的年份是平年");
            switch (m) {
            case 4:
            case 6:
            case 9:
            case 11:
                System.out.println("30");
                break;
            case 2:
                System.out.println("28");
                break;
            case 1:
            case 3:
            case 5:
            case 7:
            case 8:
            case 10:
            case 12:
                System.out.println("31");
                break;
            default:
                System.out.println("输入的月份不合法");
                break;
            }

        }

    }

}

2、给定一个成绩a,使用switch结构求出a的等级。
A:90-100,B:80-89,C:70-79,D:60-69,E:0~59

package boke;

public class Boke2 {

    /**
     * @param args
     */
    public static void main(String[] args) {
        // TODO Auto-generated method stub
        int a = 50;
        switch (a / 10) {
        case 6:
            System.out.println("成绩的等级=D");
            break;
        case 7:
            System.out.println("成绩的等级=C");
            break;
        case 8:
            System.out.println("成绩的等级=B");
            break;
        case 9:
        case 10:
            System.out.println("成绩的等级=A");
            break;
        default:
            System.out.println("成绩的等级=E");
            break;
        }
    }
}

3、输入一个数字,判断是一个奇数还是偶数 

package boke;

import java.util.Scanner;

public class Boke3 {

    /**
     * @param args
     */
    public static void main(String[] args) {
        // TODO Auto-generated method stub
        Scanner input = new Scanner(System.in);
        System.out.println("输入一个数");
        int h = input.nextInt();
        if (h % 2 == 0) {
            System.out.println("输入的数是偶数");
        } else {
            System.out.println("输入的数是奇数");
        }

    }

}

4、编写程序, 判断一个变量x的值,如果是1, 输出x=1,如果是5,输出x=5,如果是 10,输出 x=10,除了以上几个值,都输出x=none

package boke;

import java.util.Scanner;

public class Boke4 {

    /**
     * @param args
     */
    public static void main(String[] args) {
        // TODO Auto-generated method stub
        Scanner input = new Scanner(System.in);
        System.out.println("输入一个数");
        int x = input.nextInt();
        if (x == 1 || x == 5 || x == 10) {
            System.out.println("x=" + x);
        } else {
            System.out.println("x=none");
        }
    }

}

5、判断一个数字是否能被5和6同时整除(打印能被5和6整除),或只能被5整除(打印能被5整除 ),或只能被6整除,(打印能被6整除),不能被5或6整除,(打印不能被5或6整除

package boke;

import java.util.Scanner;

public class Boke5 {

    /**
     * @param args
     */
    public static void main(String[] args) {
        // TODO Auto-generated method stub
        Scanner input = new Scanner(System.in);
        System.out.println("输入一个数");
        int f = input.nextInt();
        if (f % 5 == 0 && f % 6 == 0) {
            System.out.println(f + "能同时被5和6同时整除");
        } else if (f % 5 == 0) {
            System.out.println(f + "只能被5整除");
        } else if (f % 6 == 0) {
            System.out.println(f + "只能被6整除");
        } else if (f % 5 != 0 || f % 6 != 0) {
            System.out.println(f + "不能被5或6整除");
        }

    }
}

posted @ 2021-03-27 16:21  五谷鸡爪🥳  阅读(29)  评论(0编辑  收藏  举报