返回列表 發帖

208-分級制度

import java.util.*;
class JPA02 {
    static Scanner keyboard = new Scanner(System.in);
    public static void main(String[] args) {
        test();
        test();
        test();
        test();
        test();
    }
  
    public static void test()  {
        ...
    }
}
Stay hungry,
Stay foolish.

  1. import java.util.*;
  2. class JPA02 {
  3.     static Scanner keyboard = new Scanner(System.in);
  4.     public static void main(String[] args) {
  5.         test();
  6.         test();
  7.         test();
  8.         test();
  9.         test();
  10.     }
  11.   
  12.     public static void test()  {
  13.         System.out.println("Input : ");
  14.         int s=keyboard.nextInt();
  15.         if(s>=90)
  16.         {
  17.                 System.out.println("Your grade is A");
  18.         }
  19.         else if(s>=80)
  20.         {
  21.                 System.out.println("Your grade is B");
  22.         }
  23.         else if(s>=70)
  24.         {
  25.                 System.out.println("Your grade is C");
  26.         }
  27.         else if(s>=60)
  28.         {
  29.                 System.out.println("Your grade is D");
  30.         }
  31.         else
  32.         {
  33.                 System.out.println("Your grade is F");
  34.         }
  35.     }
  36. }
複製代碼

TOP

  1. import java.util.Scanner;


  2. public class OP321 {
  3.     static Scanner keyboard = new Scanner(System.in);
  4.     public static void main(String[] args) {
  5.         test();
  6.         test();
  7.         test();
  8.         test();
  9.         test();
  10.     }
  11.   
  12.     public static void test()  {
  13.        System.out.println("Input:");
  14.        int a=keyboard.nextInt();
  15.        if(a>=90)
  16.        {
  17.                System.out.println("Your grade is A");   
  18.        }
  19.        else if(a>=80)
  20.        {
  21.                System.out.println("Your grade is B");   
  22.        }
  23.        else if(a>=70)
  24.        {
  25.                System.out.println("Your grade is C");   
  26.        }
  27.        else if(a>=60)
  28.        {
  29.                System.out.println("Your grade is D");   
  30.        }
  31.        else
  32.        {
  33.                System.out.println("Your grade is F");   
  34.        }
  35.     }
  36. }
複製代碼

TOP

  1. import java.util.Scanner;


  2. public class JPA01 {
  3.           static Scanner o= new Scanner(System.in);
  4.         public static void main(String[] args) {
  5.                 // TODO 自動產生的方法 Stub
  6.                
  7.                 test();
  8.                 test();
  9.                 test();
  10.                 test();
  11.                 test();
  12.                 }
  13.                
  14.           
  15.         private static void test() {
  16.                 // TODO 自動產生的方法 Stub
  17.                
  18.                  
  19.                
  20.                  System.out.print("Input  score:");
  21.                  int c = o.nextInt();
  22.                 
  23.                
  24.                if(c>=90)
  25.                           {
  26.                                   System.out.println("Your grade is A");
  27.                           }
  28.                if(c>=80)
  29.                           {
  30.                                   System.out.println("Your grade is B");
  31.                           }
  32.                
  33.                if(c>=70)
  34.                           {
  35.                                   System.out.println("Your grade is C");
  36.                           }
  37.                if(c>=60)
  38.                           {
  39.                                   System.out.println("Your grade is D");
  40.                           }
  41.                if(c<60)
  42.                           {
  43.                                   System.out.println("Your grade is F");
  44.                           }
  45.              
  46.         }
  47.        

  48. }
複製代碼

TOP

返回列表