返回列表 發帖

【021】if...else 判斷式

本帖最後由 tonyh 於 2023-1-11 16:50 編輯



  1. import java.util.Scanner;

  2. public class Ch10 {

  3.         public static void main(String[] args) {
  4.                 int age;
  5.                 Scanner s=new Scanner(System.in);

  6.                 System.out.print("請輸入你的年紀:");
  7.                 age=s.nextInt();

  8.                 if(age>=18)
  9.                         System.out.println("可以考駕照了!");
  10.                 else
  11.                         System.out.println("未滿18再等等。");
  12.         }
  13. }
複製代碼

  1. import java.util.Scanner;

  2. public class A {

  3.         public static void main(String[] args)
  4.         {
  5.                 Scanner s=new Scanner(System.in);
  6.                 int x;
  7.                 System.out.print("Enter your age");
  8.                 x=s.nextInt();
  9.                
  10.                 if(x>=18)
  11.             System.out.println("You have fufilled the age requirment for a liscense");
  12.                 else
  13.             System.out.println("You have not fufilled the age requirment for a liscense");
  14.         }
  15. }
  16.                
複製代碼

TOP

返回列表