標題:
if...else 判斷式
[打印本頁]
作者:
tonyh
時間:
2019-7-2 10:24
標題:
if...else 判斷式
本帖隱藏的內容需要回復才可以瀏覽
作者:
古蕾娜
時間:
2019-7-2 10:46
import java.io.Console;
public class Ch09
{
public static void main(String args[])
{
Console c=System.console();
int age;
System.out.print("Enter your age: ");
age=Integer.parseInt(c.readLine());
if (age>=18)
System.out.println("You can test for your driver's liscence!");
else
System.out.println("You are under 18, wait a few years!");
}
}
複製代碼
作者:
蔡杰恩
時間:
2019-7-2 10:46
import java.io.Console;
public class Ch11
{
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.print("可以考駕照了!");
else
System.out.print("再等等!");
}
}
複製代碼
作者:
陳致翰
時間:
2019-7-2 10:46
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.print("可以考駕照了");
else
System.out.print("再等等");
}
}
複製代碼
作者:
李從赫
時間:
2019-7-2 10:47
import java.io.Console;
public class Ch08
{
public static void main(String args[])
{
int age;
Console c=System.console();
System.out.print("輸入age");
age=Integer.parseInt(c.readLine());
if(age>=18)
System.out.println("可以考駕照了!");
else
System.out.println("再等等");
}
}
複製代碼
作者:
張啟廣
時間:
2019-7-2 10:47
import java.io.Console;
public class Ch09
{
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-age)+"年吧!");
}
}
複製代碼
作者:
林宥杰
時間:
2019-7-2 10:47
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("再等等");
}
}
複製代碼
作者:
陳智鈞
時間:
2019-7-2 10:48
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("再等等~~");
}
}
複製代碼
作者:
李佳諭
時間:
2019-7-2 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("未滿18!再等等!");
}
}
複製代碼
作者:
劉欽文
時間:
2019-7-2 10:50
import java.io.Console;
public class Ch08
{
public static void main(String args[])
{
int age;
Console c=System.console();
System.out.print("輸入age");
age=Integer.parseInt(c.readLine());
if(age>=18)
System.out.println("可以考駕照了!");
else
System.out.println("再等等");
}
}
複製代碼
作者:
古昇暘
時間:
2019-7-2 10:51
import java.io.Console;
public class Ch010
{
public static void main(String args[])
{
Console c=System.console();
int age;
System.out.println("Please enter your age truthfully: ");
age=Integer.parseInt(c.readLine());
if(age>=18)
{
System.out.println("You are old enough to get your liscense! Congratulations");
}else
{
System.out.println("Oh! you are still not of age to legally get the liscense!");
}
}
}
複製代碼
作者:
王煦
時間:
2019-7-2 10:51
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("回家過生日啦");
}
}
複製代碼
作者:
葉子于
時間:
2019-7-2 10:51
本帖最後由 葉子于 於 2019-7-2 10:53 編輯
import java.io.Console;
public class ch06
{
public static void main(String aargs[])
{
int age;
Console c=System.console();
age=Integer.parseInt(c.readLine("請輸入年紀:"));
if(age>=18)
System.out.println("可以考駕照了");
else
System.out.println("再等"+(18-age)+"年吧");
}
}
複製代碼
作者:
李沛儒
時間:
2019-7-2 10:51
import java.io.Console;
public class Ch08
{
public static void main(String args[])
{
Console c=System.console();
int age;
System.out.println("你想考駕照嗎") ;
System.out.print("你的年齡是: ") ;
age=Integer.parseInt(c.readLine());
if(age>=18)
System.out.println("可以考駕照了!!");
else
System.out.println("再等"+(18 - age)+"年吧");
}
}
複製代碼
作者:
李承洋
時間:
2019-7-2 10:51
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("可以考駕照了!");
}
}
複製代碼
作者:
謝宗佑
時間:
2019-7-2 10:52
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("再等等~~");
}
}
複製代碼
作者:
吳庭慈
時間:
2019-7-2 10:52
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("再等等~~~");
}
}
複製代碼
作者:
賴駿榮
時間:
2019-7-2 10:52
回復
1#
tonyh
import java.io.Console;
public class ch06
{
public static void main(String args[])
{
int x;
Console c=System.console();
x=Integer.parseInt(c.readLine("輸入年紀: "));
if (x>=18)
System.out.println("都"+(x)+"歲了還沒考到駕照");
else
System.out.println("回家玩手機啦才"+(x)+"歲就想考駕照,你以為在開模擬器?");
}
}
複製代碼
作者:
陳柏銓
時間:
2019-7-2 10:52
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("未成年");
}
}
複製代碼
作者:
陳璽安
時間:
2019-7-2 10:53
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("再等等");
}
}
複製代碼
作者:
蔡杰希
時間:
2019-7-2 10:54
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("再等一等~");
}
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2