標題:
if...else if...else 判斷式 (一)
[打印本頁]
作者:
tonyh
時間:
2020-1-31 10:45
標題:
if...else if...else 判斷式 (一)
運用 if...else if...else 判斷式, 比較 x 與 y 的大小關係.
二擇一
if( )
{
}
else
{
}
多擇一
if( )
{
}
else if( )
{
}
else if( )
{
}
else
{
}
多擇多 / 多擇無
if( )
{
}
if( )
{
}
if( )
{
}
if( )
{
}
本帖隱藏的內容需要回復才可以瀏覽
作者:
蔡承翰
時間:
2020-1-31 11:04
import java.io.Console;
public class Ch07
{
public static void main(String args[])
{
Console c=System.console();
int x,y;
x=Integer.parseInt(c.readLine("輸入x:"));
y=Integer.parseInt(c.readLine("輸入y:"));
if(x>y)
System.out.println("x大於y!");
else if(x<y)
System.out.println("x小於y~");
else
System.out.println("兩數相等");
}
}
複製代碼
作者:
黃煜城
時間:
2020-1-31 11:05
import java.io.Console;
public class Ch10
{
public static void main(String args[])
{
Console c=System.console();
int x,y;
System.out.print("請輸入x的值:");
x=Integer.parseInt(c.readLine());
System.out.print("請輸入y的值:");
y=Integer.parseInt(c.readLine());
if(x>y)
System.out.println("x>y");
else if(x<y)
System.out.println("x<y");
else
System.out.println("x=y");
}
}
複製代碼
作者:
張宸翔
時間:
2020-1-31 11:05
import java.io.Console;
public class Ch09
{
public static void main(String args[])
{
Console c=System.console();
int x, y;
x=Integer.parseInt(c.readLine("請輸入x: "));
y=Integer.parseInt(c.readLine("請輸入y: "));
if(x>y)
System.out.println("x大於y");
else if(x<y)
System.out.println("x小於y");
else
System.out.println("兩數相等");
}
}
複製代碼
作者:
劉家銘
時間:
2020-1-31 11:05
import java.io.Console;
public class Ch09
{
public static void main(String args[])
{
int x, y;
Console c=System.console();
x=Integer.parseInt(c.readLine("請輸入x: "));
y=Integer.parseInt(c.readLine("請輸入y: "));
if(x>y)
System.out.println("x大於y");
else if(x<y)
System.out.println("x小於於y");
else
System.out.println("兩數相等");
}
}
複製代碼
作者:
蘇宜貞
時間:
2020-1-31 11:07
import java.io.Console;
public class Ch01
{
public static void main(String args[])
{
Console c=System.console();
int x,y;
x=Integer.parseInt(c.readLine("輸入x: "));
y=Integer.parseInt(c.readLine("輸入y: "));
if(x>y)
System.out.print("x大於y");
else if(x<y)
System.out.print("x小於y");
else
System.out.print("x等於y");
}
}
複製代碼
作者:
盧弘毅
時間:
2020-1-31 11:08
import java.io.Console;
public class Ch08
{
public static void main(String args[])
{
int x,y;
Console c=System.console();
x=Integer.parseInt(c.readLine("請輸入x: "));
y=Integer.parseInt(c.readLine("請輸入y: "));
if(x>y)
System.out.println("x大於y!");
else if(x<y)
System.out.println("x小於y!");
else
System.out.println("兩數相等!");
}
}
複製代碼
作者:
楊秉樺
時間:
2020-1-31 11:09
import java.io.Console;
public class Ch10
{
public static void main(String args[])
{
Console c=System.console();
int x,y;
x=Integer.parseInt(c.readLine("請輸入x: "));
y=Integer.parseInt(c.readLine("請輸入y: "));
if (x>y)
System.out.println("x大於y!");
else if (x<y)
System.out.println("x小於y!");
else
System.out.println("兩數相等!");
}
}
複製代碼
作者:
邱翊博
時間:
2020-1-31 11:09
import java.io.Console;
public class Ch11
{
public static void main(String args[])
{
Console c=System.console();
int x,y;
x=Integer.parseInt(c.readLine("輸入x: "));
y=Integer.parseInt(c.readLine("輸入y: "));
if(x>y)
System.out.println("x>Y");
else if(x<y)
System.out.println("x<Y");
else
System.out.println("x=Y");
}
}
複製代碼
作者:
蘇行一
時間:
2020-1-31 11:10
import java.io.Console;
public class Ch07
{
public static void main(String args[])
{
Console c=System.console();
int x,y;
System.out.print("輸入x: ");
x=Integer.parseInt(c.readLine());
System.out.print("輸入y: ");
y=Integer.parseInt(c.readLine());
if(x>y)
System.out.println("x>y");
else if(x<y)
System.out.println("x<y");
else
System.out.println("x=y");
}
}
複製代碼
作者:
何蕙妘
時間:
2020-1-31 11:10
import java.io.Console;
public class Ch10
{
public static void main(String args[])
{
Console c=System.console();
int x,y;
System.out.print("輸入x: ");
x=Integer.parseInt(c.readLine());
System.out.print("輸入y: ");
y=Integer.parseInt(c.readLine());
if(x>y)
System.out.println("x>y");
else if(x<y)
System.out.println("x<y");
else
System.out.println("x=y");
}
}
複製代碼
作者:
陳梓瑜
時間:
2020-1-31 11:10
import java.io.Console;
public class Ch10
{
public static void main(String args[])
{
Console c=System.console();
int x,y;
System.out.print("輸入x: ");
x=Integer.parseInt(c.readLine());
System.out.print("輸入y: ");
y=Integer.parseInt(c.readLine());
if(x>y)
System.out.println("x>y");
else if(x<y)
System.out.println("x<y");
else
System.out.println("x=y");
}
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2