標題:
if...else 判斷式
[打印本頁]
作者:
tonyh
時間:
2021-1-22 10:42
標題:
if...else 判斷式
> 大於
< 小於
== 等於
>= 大於或等於
<= 小於或等於
!= 不等於
本帖隱藏的內容需要回復才可以瀏覽
作者:
吳聲寬
時間:
2021-1-22 10:57
import java.io.Console;
public class Ch08
{
public static void main(String args[])
{
Console c=System.console();
int age;
age=Integer.parseInt(c.readLine("Enter your age: "));
if(age>=18)
{
System.out.println("You can have your license test!");
}
else
{
System.out.println("You still need to wait...");
}
}
}
複製代碼
作者:
王博裕
時間:
2021-1-22 10:58
import java.io.Console;
public class Ch02
{
public static void main(String args[])
{
Console c=System.console();
int age;
System.out.print("輸入年紀");
age=Integer.parseInt(c.readLine());
if(age>=18)
System.out.println("可以考駕照了");
else
System.out.println("再等等");
}
}
複製代碼
作者:
楊澤全
時間:
2021-1-22 10:58
import java.io.Console;
public class Ch04
{
public static void main(String args[])
{
Console a=System.console() ;
int age;
age=Integer.parseInt(a.readLine("請輸入你的年紀:"));
if(age>=18)
System.out.print("恭喜!可以考駕照了!");
else
System.out.print("未滿18,再等等喔!");
}
}
複製代碼
作者:
李柏穎
時間:
2021-1-22 10:58
import java.io.Console;
public class Ch04
{
public static void main(String args[])
{
int a;
Console c=System.console();
a=Integer.parseInt(c.readLine("請輸入年紀: "));
if(a>=18)
System.out.println("恭喜你!可以考駕照了");
else
System.out.println("未滿18,再等一等喔!");
}
}
複製代碼
作者:
紀承典
時間:
2021-1-22 10:59
import java.io.Console;
public class Ch06
{
public static void main(String args[])
{
Console c=System.console();
int age=Integer.parseInt(c.readline("請輸入你的年紀: "));
if(age>=18)
System.out.println("可以考駕照了!");
else
System.out.println("再等等~~");
}
}
複製代碼
作者:
王睿宇
時間:
2021-1-22 10:59
import java.io.Console;
public class Ch04
{
public static void main(String args[])
{
int n;
Console c=System.console();
n=Integer.parseInt(c.readLine("輸入你的年齡: "));
if(n>=18)
System.out.println("恭喜!可以考駕照了");
else
System.out.println("未滿18,再等等喔~");
}
}
複製代碼
作者:
藍健洲
時間:
2021-1-22 11:02
import java.io.Console;
public class Ch08
{
public static void main(String args[])
{
Console c=System.console();
int age=Integer.parseInt(c.readLine("請輸入你的年紀"));
if(age>=18)
System.out.println("可以考駕照了");
else
System.out.println("再等等");
}
}
複製代碼
作者:
卓炘暘
時間:
2021-1-22 11:02
import java.io.Console;
public class Ch08
{
public static void main(String args[])
{
Console c=System.console();
int age;
System.out.print("請輸入你的年紀: ");
age=Integer.parseInt(c.readLine());
if(age>=18)
System.out.println("可以考駕照了!");
else
System.out.println("還要再等等喔!");
}
}
複製代碼
作者:
楊小萱
時間:
2021-1-22 11:03
import java.io.Console;
public class Ch06
{
public static void main(String args[])
{
int age;
Console c=System.console();
System.out.print("輸入年紀:");
age=Integer.parseInt(c.readLine());
if(age>=18)
System.out.println("恭喜!可以考駕照了!");
else
System.out.println("未滿18,還得再等一等喔!");
}
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2