標題:
if 判斷式
[打印本頁]
作者:
tonyh
時間:
2014-5-10 14:38
標題:
if 判斷式
本帖最後由 tonyh 於 2014-5-10 14:47 編輯
利用 if 判斷式, 以及變數值可不斷被取代的觀念, 設計一程式判斷使用者是否可以考駕照了.
import java.io.Console;
public class ch09
{
public static void main(String args[])
{
Console c=System.console();
int age;
String str="恭喜!可以考駕照了!";
System.out.print("請輸入你的年紀: ");
age=Integer.parseInt(c.readLine());
if(age<18)
str="未滿18,還得再等一等喔!";
System.out.print(str);
}
}
複製代碼
作者:
張瀚仁
時間:
2014-5-10 14:55
import java.io.Console;
public class ch09
{
public static void main(String args[])
{
Console c=System.console();
int age;
String str="可以考駕照了";
System.out.print("請輸入你的年紀: ");
age=Integer.parseInt(c.readLine());
if(age<18)
str="未滿十八歲,須等!!";
System.out.print(str);
}
}
複製代碼
作者:
劉泳鱔
時間:
2014-5-10 14:56
import java.io.Console;
public class ch09
{
public static void main(String args[])
{
Console c=System.console();
int age;
String str="恭喜!可以考駕照了! ";
System.out.print("請輸入你的年紀: ");
age=Integer.parseInt(c.readLine());
if(age<18)
str="未滿18,想考給小費!";
System.out.print(str);
}
}
複製代碼
作者:
林以諾
時間:
2014-5-10 14:58
import java.io.Console;
public class ch09
{
public static void main(String args[])
{
Console c=System.console();
String str="你可以考駕照了!";
int x;
System.out.print("請輸入你的年紀: ");
x=Integer.parseInt(c.readLine());
if(x<18)
str="未滿18,再等一等!";
System.out.print(str);
}
}
複製代碼
作者:
黃崇維
時間:
2014-5-10 14:58
import java.io.Console;
public class ch09
{
public static void main(String args[])
{
Console c=System.console();
int age;
String str="恭喜!可以考駕照了!";
System.out.print("請輸入你的年紀: ");
age=Integer.parseInt(c.readLine());
if(age<18)
str="未滿18,還得再等一等喔!";
System.out.print(str);
}
}
複製代碼
作者:
鎧言
時間:
2014-5-10 15:01
import java.io.Console;
public class ch09
{
public static void main(String args[])
{
Console c=System.console();
int age;
String str="可以考駕照了";
System.out.print("請輸入你的年紀: ");
age=Integer.parseInt(c.readLine());
if(age<18)
str="未滿十八歲,須等等!!";
System.out.print(str);
}
}
複製代碼
作者:
許逸群
時間:
2014-5-10 15:04
import java.io.Console;
public class ch09
{
public static void main(String args[])
{
Console c=System.console();
int age;
String str="恭喜!可以考駕照了!";
System.out.print("請輸入你的年紀: ");
age=Integer.parseInt(c.readLine());
if(age<18)
str="未滿18,還得再等一下喔!";
System.out.print(str);
}
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2