標題:
【021】if...else 判斷式
[打印本頁]
作者:
tonyh
時間:
2023-1-11 16:02
標題:
【021】if...else 判斷式
本帖最後由 tonyh 於 2023-1-11 16:50 編輯
import java.util.Scanner;
public class Ch10 {
public static void main(String[] args) {
int age;
Scanner s=new Scanner(System.in);
System.out.print("請輸入你的年紀:");
age=s.nextInt();
if(age>=18)
System.out.println("可以考駕照了!");
else
System.out.println("未滿18再等等。");
}
}
複製代碼
作者:
王捷恩
時間:
2023-1-11 16:55
import java.util.Scanner;
public class A {
public static void main(String[] args)
{
Scanner s=new Scanner(System.in);
int x;
System.out.print("Enter your age");
x=s.nextInt();
if(x>=18)
System.out.println("You have fufilled the age requirment for a liscense");
else
System.out.println("You have not fufilled the age requirment for a liscense");
}
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2