第四周上级作业

1.编写程序, 输入变量x的值,如果是1,输出x=1,如果是5,输出x=5,如果是 10,输出
x=10,除了以上几个值,都输出x=none。(知识点:if条件语句)

import java.util.Scanner;

public class first {
    public static void main(String[] args) {
        System.out.println("请输入一个整数");
        Scanner sc = new Scanner(System.in);
        int x = sc.nextInt();
        if (x == 1) {
            System.out.println("x=" + x);
        } else if (x == 5) {
            System.out.println("x=" + x);
        } else if (x == 10) {
            System.out.println("x=" + x);
        } else {
            System.out.println("x=none");
        }

    }
}

2.用switch结构实现第1题

import java.util.Scanner;

public class first {
    public static void main(String[] args) {
        System.out.println("请输入一个整数");
        Scanner sc = new Scanner(System.in);
        int x = sc.nextInt();
        switch (x) {
            case 1:
            case 5:
            case 10:
                System.out.println("x=" + x);
                break;   
            default:
                System.out.println("x=none");
        }
    }
}

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

import java.util.Scanner;

public class first {
    public static void main(String[] args) {
        System.out.println("请输入一个整数");
        Scanner sc = new Scanner(System.in);
        int x = sc.nextInt();
        if (x%6==0&&x%5==0){
            System.out.println("能被5和6整除");
        }else if (x%5==0&&x%6!=0){
            System.out.println("能被5整除");
        }else if (x%5!=0&&x%6==0){
            System.out.println("能被6整除");
        }
    }
}

4.输入一个0~100的分数,如果不是0~100之间,打印分数无效,根据分数等级打印
A(90-100),B(80-89),C,D,E(知识点:条件语句if elseif)

import java.util.Scanner;

public class first {
    public static void main(String[] args) {
        System.out.println("请输入成绩");
        Scanner sc = new Scanner(System.in);
        int x = sc.nextInt();
        if (x < 0 || x > 100) {
            System.out.println("输入错误请重写输入");
        }
        if (x >= 90 && x <= 100) {
            System.out.println("A");
        } else if (x >= 80 && x <= 89) {
            System.out.println("B");
        } else if (x >= 70 && x <= 79) {
            System.out.println("C");
        } else if (x >= 60 && x <= 69) {
            System.out.println("D");
        } else {
            System.out.println("E");
        }
    }
}

5.输入三个整数x,y,z,请把这三个数由小到大输出(知识点:集合哈哈哈)

import java.util.Scanner;

public class first {
    public static void main(String[] args) {
        System.out.println("请输入三个数");
        Scanner sc = new Scanner(System.in);
        int a = sc.nextInt();
        int b = sc.nextInt();
        int c = sc.nextInt();
        int x;
        if (a < b) {
            x = a;
            a = b;
            b = x;
        }
        if (a < c) {
            x = a;
            a = c;
            c = x;
        }
        if (b < c) {
            x = b;
            b = c;
            c = x;
        }
        System.out.println(c + " ;" + b + "; " + a);
    }
原文地址:https://www.cnblogs.com/GEM520/p/12573343.html