標題:
if 判斷式
[打印本頁]
作者:
tonyh
時間:
2012-8-11 16:35
標題:
if 判斷式
本帖最後由 tonyh 於 2012-8-11 16:54 編輯
利用 if 判斷式, 以及變數值可不斷被取代的觀念, 設計一程式判斷使用者是否可以考駕照了.
import java.io.Console;
public class ch10
{
public static void main(String args[])
{
Console console=System.console();
String str="恭喜你可以考駕照了!";
int age;
System.out.print("請輸入你的年紀: ");
age=Integer.parseInt(console.readLine());
if(age<18)
str="哎呀未滿18歲, 還得等一等!";
System.out.print(str);
}
}
複製代碼
作者:
尤泓鈞
時間:
2012-8-11 16:52
import java.io.Console;
public class ch12
{
public static void main(String args[])
{
Console console=System.console();
String str="未滿18歲,還要等等!";
int age;
System.out.print("請輸入你的年紀:");
age=Integer.parseInt(console.readLine());
if(age<18)
str="未滿18歲,在等等吧!";
System.out.print(str);
}
}
複製代碼
作者:
t3742238
時間:
2012-8-11 16:52
import java.io.Console;
public class ch12
{
public static void main(String args[])
{
Console console=System.console();
String str="未滿18歲,還要等等!";
int age;
System.out.print("請輸入你的年紀:");
age=Integer.parseInt(console.readLine());
if(age<18)
str="未滿18歲,在等等吧!";
System.out.print(str);
}
}
複製代碼
作者:
劉漢文
時間:
2012-8-11 16:53
import java.io.Console;
public class ch12
{
public static void main(String args[])
{
Console console=System.console();
String str="未滿18歲,還要等等!";
int age;
System.out.print("請輸入你的年紀:");
age=Integer.parseInt(console.readLine());
if(age<18)
str="未滿18歲,在等等吧!";
System.out.print(str);
}
}
複製代碼
作者:
蔡昀佑
時間:
2012-8-11 16:57
import java.io.Console;
public class ch12
{
public static void main(String args[])
{
Console console=System.console();
String str="未滿18歲,還要等等!";
int age;
System.out.print("請輸入你的年紀:");
age=Integer.parseInt(console.readLine());
if(age<18)
str="未滿18歲,在等等吧!";
System.out.print(str);
}
}
複製代碼
作者:
t2364705
時間:
2012-8-11 16:57
import java.io.Console;
public class ch11
{
public static void main(String args[])
{
Console console=System.console();
String str="恭喜你可以考駕照了!";
int age;
System.out.print("請輸入你的年紀: ");
age=Integer.parseInt(console.readLine());
if(age<18)
str="你還沒滿18歲, 還不能考駕照!";
System.out.print(str);
}
}
複製代碼
作者:
黃博鴻
時間:
2012-10-6 15:30
import java.io.Console;
public class ch9
{
public static void main(String args[])
{
Console console=System.console();
String str="恭喜你可以考駕照了!";
int age;
System.out.print("請輸入你的年紀: ");
age=Integer.parseInt(console.readLine());
if(age<18)
str="未滿18歲,你還得等等了";
System.out.print(str);
}
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2