第四次

  1. 输入一个年份,判断是不是闰年(能被4整除但不能被100整除,或者能被400整除)
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    2.package dsaddsa;
    3.
    4.import java.awt.im.InputContext;
    5.import java.util.Scanner;
    6.
    7.public class one {
    8.
    9/**
    10.  * @param args
    11.  */
    12. public static void main(String[] args) {
    13.     // TODO Auto-generated method stub
    14.     Scanner input=new Scanner(System.in);
    15.         System.out.println("输入一个年份");
    16.         int year=input.nextInt();
    17.         if (year%4==0&&year%100!=0||year%400==0) {
    18.             System.out.println("闰年");
    19.         } else {
    20.         System.out.println("不闰年");
    21.     }
    22.
    23.
    24. }
    25.
    26.}

      

     

     

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

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    package dsaddsa;
     
    import java.awt.im.InputContext;
    import java.util.Random;
    import java.util.Scanner;
     
    public class two {
     
        /**
         * @param args
         */
        public static void main(String[] args) {
            // TODO Auto-generated method stub
            Scanner input=new Scanner(System.in);
            Random r=new Random();
            int a=r.nextInt(10);
            System.out.println("输入4位数的卡号");
            int sum=input.nextInt();
            int su=sum%1000/100;
            if (su==a) {
                System.out.println("是会员");
            } else {
                System.out.println("不是会员");
            }
             
        }
     
    }

      

     

     

    3.已知函数,输入x的值,输出对应的y的值.

  2.     x + 3 ( x > 0 )

    y =  0 ( x = 0 )

            x*2 –1 ( x < 0 )

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    package dsaddsa;
     
    import java.util.Scanner;
     
    public class three {
     
        /**
         * @param args
         */
        public static void main(String[] args) {
            // TODO Auto-generated method stub
            Scanner input=new Scanner(System.in);
            System.out.println("为x输入一个数");
            int x=input.nextInt();
            int y = 0;
            if(x>3){
                y=x+3;
                 System.out.println(y);
     
            }
             if(x==0){
                 y=0;
                 System.out.println(y);
     
             }
             if(x<2){
                 y=x*2-1;
                 System.out.println(y);
     
             }
             
     
        }
     
    }

      

     

     

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

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    package dsaddsa;
     
    import java.util.Scanner;
     
    public class four {
     
        /**
         * @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>b-c) {
                System.out.println("能构成三角形");
            } else {
                System.out.println("不能构成三角形");
            }
     
     
        }
     
    }

     

      

     

     

    作业

    1:输入年份月份,输出该月的天数(闰年229天,条件参考上机练习1

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    package 第四次作业;
     
    import java.util.Scanner;
     
    public class 第一题 {
     
        /**
         * @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();
            int day;
            if (m==1||m==3||m==5||m==7||m==8||m==10||m==12) {
                day=31;
            System.out.println(m+"月份的天数为  "+day);  
            }      
             
             else if(m==4||m==6||m==9||m==11)  {
                 day=30;
                 System.out.println(m+"月份的天数为  "+day); 
            }
             else if (m==2&&year%4==0&&year%100!=0||year%400==0) {
                day=28;
                System.out.println(m+"月份的天数为  "+day);  
            }
             else {
                 day=29;
                 System.out.println(m+"月份的天数为  "+day); 
            }
        }
     
    }

     

      

     

     

    2、给定一个成绩a,使用switch结构求出a的等级A90-100B80-89C70-79D60-69E0~59

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    import java.util.Scanner;
     
     
    public class 第二题 {
     
        /**
         * @param args
         */
        public static void main(String[] args) {
            // TODO Auto-generated method stub
            Scanner input=new Scanner(System.in);
            System.out.println("输入你的成绩");
            int cj=input.nextInt();
            switch (cj/10) {
            case 10:
            case 9:
                System.out.println("A");
                break;
            case 8:
                System.out.println("B");
                break;
            case 7:
                System.out.println("C");
                break;
            case 6:
                System.out.println("D");
                break;
            default:
                System.out.println("D");
                break;
            }
        }
     
    }

     

      

     

     

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

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    package 第四次作业;
     
    import java.util.Scanner;
     
    public class 第三题 {
     
        /**
         * @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();
            if (a%2==0) {
                System.out.println("偶数");
            } else {
                System.out.println("奇数");
            }
     
        }
     
    }

      

     

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

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    package 第四次作业;
     
    import java.util.Scanner;
     
    public class 第四题 {
     
        /**
         * @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、判断一个数字是否能被56同时整除(打印能被56整除),或只能被5整除(打印能被5整除 ),或只能被6整除,(打印能被6整除),不能被56整除,(打印不能被56整除)

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    package 第四次作业;
     
    import java.util.Scanner;
     
    public class 第五题 {
     
        /**
         * @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();
            if (a%5==0&&a%6==0) {
                System.out.println("能被5和6整除");
            } else if(a%5==0){
                System.out.println("能被5整除");
            }
            else if (a%6==0){
                System.out.println("能被6整除");
            }
            else {
                System.out.println("不能被5或6整除");
     
            }
        }
     
    }

     

      

     

     

     

     

posted @   陈华涛  阅读(245)  评论(0编辑  收藏  举报
编辑推荐:
· 你所不知道的 C/C++ 宏知识
· 聊一聊 操作系统蓝屏 c0000102 的故障分析
· SQL Server 内存占用高分析
· .NET Core GC计划阶段(plan_phase)底层原理浅谈
· .NET开发智能桌面机器人:用.NET IoT库编写驱动控制两个屏幕
阅读排行:
· 我干了两个月的大项目,开源了!
· 推荐一款非常好用的在线 SSH 管理工具
· 千万级的大表,如何做性能调优?
· 聊一聊 操作系统蓝屏 c0000102 的故障分析
· .NET周刊【1月第1期 2025-01-05】
点击右上角即可分享
微信分享提示