標題:
if...else 判斷式
[打印本頁]
作者:
tonyh
時間:
2020-1-31 10:18
標題:
if...else 判斷式
> 大於
< 小於
== 等於
>= 大於或等於
<= 小於或等於
!= 不等於
本帖隱藏的內容需要回復才可以瀏覽
作者:
張宸翔
時間:
2020-1-31 10:41
import java.io.Console;
public class Ch08
{
public static void main(String args[])
{
Console c=System.console();
int age;
age=Integer.parseInt(c.readLine("請輸入你的年紀: "));
if(age>=18)
{
System.out.println("恭喜!可以考駕照了!");
}else
{
System.out.println("未滿18!還要再等等喔");
}
}
}
複製代碼
作者:
蔡承翰
時間:
2020-1-31 10:41
import java.io.Console;
public class Ch07
{
public static void main(String args[])
{
Console c=System.console();
int age;
age=Integer.parseInt(c.readLine("輸入年紀:"));
if(age>=18)
System.out.println("可以考駕照了!");
else
System.out.println("再等等~");
}
}
複製代碼
作者:
劉家銘
時間:
2020-1-31 10:42
import java.io.Console;
public class Ch08
{
public static void main(String args[])
{
int age;
Console c=System.console();
age=Integer.parseInt(c.readLine("輸入您的年紀: "));
if(age>=18)
System.out.println("恭喜!可以考駕照了!");
else
System.out.println("未滿18,還得再等一等喔!");
}
}
複製代碼
作者:
黃煜城
時間:
2020-1-31 10:43
import java.io.Console;
public class Ch09
{
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("還不能喔!再等等吧~");
}
}
複製代碼
作者:
蘇宜貞
時間:
2020-1-31 10:43
import java.io.Console;
public class Ch01
{
public static void main(String args[])
{
Console c=System.console();
int age;
age=Integer.parseInt(c.readLine("請輸入你的年齡: "));
if(age>=18)
System.out.println("可以考駕照了!");
else
System.out.println("18歲後再來!");
}
}
複製代碼
作者:
盧弘毅
時間:
2020-1-31 10:43
import java.io.Console;
public class Ch08
{
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歲喔,再等等");
}
}
複製代碼
作者:
蘇行一
時間:
2020-1-31 10:46
import java.io.Console;
public class Ch07
{
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("再等等~~");
}
}
複製代碼
作者:
何蕙妘
時間:
2020-1-31 10:47
import java.io.Console;
public class Ch09
{
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("再等等!");
}
}
複製代碼
作者:
楊秉樺
時間:
2020-1-31 10:47
import java.io.Console;
public class Ch09
{
public static void main(String args[])
{
Console c=System.console();
int a;
a=Integer.parseInt(c.readLine("請輸入你的年紀: "));
if (a>=18)
{
System.out.println("恭喜!可以考駕照了!");
}
else
{
System.out.println("未滿18,還得再等一等喔!");
}
}
}
複製代碼
作者:
沙芃妘
時間:
2020-1-31 10:48
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("再等等");
}
}
複製代碼
作者:
陳梓瑜
時間:
2020-1-31 11:01
import java.io.Console;
public class Ch09
{
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("再等等~~");
}
}
複製代碼
作者:
邱翊博
時間:
2020-1-31 11:02
import java.io.Console;
public class Ch10
{
public static void main(String args[])
{
Console c=System.console();
int age;
age=Integer.parseInt(c.readLine("輸入年紀: "));
if(age>=18)
System.out.println("可以考駕照了!");
else
System.out.println("休但幾壘!");
}
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2