zoukankan      html  css  js  c++  java
  • 作业练习

    3-7
    import java.util.Scanner;
    public class L

    {

         @SuppressWarnings("resource")
         public static void main(String[] args)

            {
               Scanner input = new Scanner(System.in);
               System.out.print("Enter a year:");
               int year = input.nextInt();
               boolean isLeapYear = (year % 4 == 0 && year % 100 != 0) || (year % 400 == 0);
               System.out.println(year + " is a leap year?" +" "+ isLeapYear);
          }
    }


    3-6
            import java.util.Scanner;
            public class L  

    {

          @SuppressWarnings("resource")
          public static void main(String[] args)

          {
              Scanner input = new Scanner(System.in);

             System.out.print("Enter an integer:");
             int number = input.nextInt();
             if (number % 2 == 0 && number % 3 ==0)
             System.out.println(number + " is divisible by 2 and 3.");
             if (number % 2 == 0 || number % 3 ==0)
            System.out.println(number + " is divisible by 2 or 3.");
            if (number % 2 == 0 ^ number % 3 ==0)
           System.out.println(number + " is divisible by 2 or 3, but not both.");
         }
    }



    3-4
    import java.util.Scanner;
    public class L

     {

                @SuppressWarnings("resource")
                public static void main(String[] args)

               {
                    Scanner input = new Scanner(System.in);

                    System.out.print("Enter weight in kilograms:");
                    double weight = input.nextDouble();

                    System.out.print("Enter height in meters:");
                   double height = input.nextDouble();

                   double bmi = weight/(height * height);

                   System.out.println("BMI is " + bmi);
                   if (bmi < 18.5)
                  System.out.println("Underweight");
                  else if (bmi < 25)
                 System.out.println("Normal");
                 else if (bmi < 30)
                 System.out.println("Overweight");
               }

                    else
                    System.out.println("Obese");
              }
    }



    3-3
    import java.util.Scanner;
    public class L

    {

               @SuppressWarnings("resource")
               public static void main(String[] args)

              {
                    int number1 = (int)(Math.random() * 10);
                    int number2 = (int)(Math.random() * 10);

                    if (number1 < number2)
                    {
                       int temp = number1;
                       number1 = number2;
                       number2 = temp;
                     }
                System.out.println("What is " + number1 + "-" + number2 + "?");
               Scanner input = new Scanner(System.in);
               int answer = input.nextInt();
               if (number1 - number2 == answer)
               System.out.println("You are correct!");
                      else

                     {
            System.out.println("Your answer is wrong.");
            System.out.println(number1 + "-" + number2 + "should be " + (number1-number2));
                     }
            }
    }


    3-2
    import java.util.Scanner;
    public class L

    {

                     @SuppressWarnings("resource")
                     public static void main(String[] args)

                {
                     Scanner input = new Scanner(System.in);
                     System.out.println("Enter an integer:");
                     int number = input.nextInt();
                     if (number % 5 == 0)
                     System.out.println("HiFive");
                     if(number % 2 == 0)
                     System.out.println("HiEven");
                 }
    }


    3-1
    import java.util.Scanner;
    public class L

    {

                   public static void main(String[] args)

                   {
                        int number1=(int)(System.currentTimeMillis()%10);
                        int number2=(int)(System.currentTimeMillis()/7%10);
                       @SuppressWarnings("resource")
                       Scanner input=new Scanner(System.in);
                      System.out.println("What is "+number1+"+"+number2+"?");
                      int answer = input.nextInt();
                      System.out.println(number1+"+"+number2+"="+answer+" is "+(number1+number2==answer));
                   }
    }

  • 相关阅读:
    怎么让图片居中显示?
    上传代码出现弹出框“请确保已在git中配置您的user.name和user.email”解决方法
    window.open()下载文件: 在当前页面打开方法
    修改网站颜色为黑白 (100% 灰度)/全页置灰
    ZMQ简单使用
    CCXT
    Python描述符详解
    自定义序列的修改、散列和切片
    使用__slots__类属性节省空间
    QGraphicsView实现虚拟摇杆
  • 原文地址:https://www.cnblogs.com/jingjing1314/p/7676671.html
Copyright © 2011-2022 走看看