Board logo

標題: [模擬考]TQC+ 208 [打印本頁]

作者: 王彥甯    時間: 2017-6-10 12:21     標題: [模擬考]TQC+ 208

完成TQC+ 208 題目
作者: 王彥甯    時間: 2017-6-10 12:22

  1. import java.util.*;
  2. class JPD02 {
  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(90>s & s>=80)
  20.         {
  21.                 System.out.println("Your grade is B");
  22.         }
  23.         else if(80>s & s>=70)
  24.         {
  25.                 System.out.println("Your grade is C");
  26.         }
  27.         else if(70>s & 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. }
複製代碼

作者: 張健勳    時間: 2017-6-10 12:24

  1. import java.util.*;
  2.         public 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.                 public static void test() {
  12.                         System.out.println("Input:");
  13.                         int g = keyboard.nextInt();
  14.                         if (g>=90)System.out.println("Your grade is A");
  15.                         else if (g>=80)System.out.println("Your grade is B");
  16.                         else if (g>=70)System.out.println("Your grade is C");
  17.                         else if (g>=60)System.out.println("Your grade is D");
  18.                         else System.out.println("Your grade is F");
  19.                 }
  20. }
複製代碼





歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/) Powered by Discuz! 7.2