標題:
if...else if...else 判斷式 (一)
[打印本頁]
作者:
tonyh
時間:
2019-7-2 10:57
標題:
if...else if...else 判斷式 (一)
本帖最後由 tonyh 於 2019-7-2 11:20 編輯
運用 if...else if...else 判斷式, 比較 x 與 y 的大小關係.
二擇一
if( )
{
}
else
{
}
多擇一
if( )
{
}
else if( )
{
}
else if( )
{
}
else
{
}
多擇多 / 多擇無
if( )
{
}
if( )
{
}
if( )
{
}
if( )
{
}
本帖隱藏的內容需要回復才可以瀏覽
作者:
陳致翰
時間:
2019-7-2 11:07
import java.io.Console;
public class Ch09
{
public static void main(String args[])
{
Console c=System.console();
int a,b;
System.out.print("a: ");
a=Integer.parseInt(c.readLine());
System.out.print("b: ");
b=Integer.parseInt(c.readLine());
if(a>b)
System.out.print("a>b");
else if(a<b)
System.out.print("a<b");
else
System.out.print("a=b");
}
}
複製代碼
作者:
蔡杰恩
時間:
2019-7-2 11:08
import java.io.Console;
public class Ch12
{
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.print("x>y");
else if(x<y)
System.out.print("x<y");
else
System.out.print("x=y");
}
}
複製代碼
作者:
古蕾娜
時間:
2019-7-2 11:08
import java.io.Console;
public class Ch10
{
public static void main(String args[])
{
Console c=System.console();
int x,y;
System.out.print("Enter the value of x: ");
x=Integer.parseInt(c.readLine());
System.out.print("Enter the value of 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");
}
}
複製代碼
作者:
葉子于
時間:
2019-7-2 11:08
import java.io.Console;
public class ch05
{
public static void main(String args[])
{
float x,y;
Console c=System.console();
x=Float.parseFloat(c.readLine("請輸入x:"));
y=Float.parseFloat(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");
}
}
複製代碼
作者:
李承洋
時間:
2019-7-2 11:08
import java.io.Console;
public class Ch09
{
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");
}
}
複製代碼
作者:
林宥杰
時間:
2019-7-2 11:09
import java.io.Console;
public class Ch08
{
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");
}
}
複製代碼
作者:
李佳諭
時間:
2019-7-2 11:09
import java.io.Console;
public class Ch09
{
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");
}
}
複製代碼
作者:
李從赫
時間:
2019-7-2 11:10
import java.io.Console;
public class Ch08
{
public static void main(String args[])
{
int x,y;
Console c=System.console();
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");
}
}
複製代碼
作者:
陳柏銓
時間:
2019-7-2 11:10
import java.io.Console;
public class Ch09
{
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");
}
}
複製代碼
作者:
劉欽文
時間:
2019-7-2 11:10
import java.io.Console;
public class Ch08
{
public static void main(String args[])
{
int x,y;
Console c=System.console();
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");
}
}
複製代碼
作者:
古昇暘
時間:
2019-7-2 11:11
import java.io.Console;
public class Ch011
{
public static void main(String args[])
{
Console c=System.console();
int x, y;
System.out.println("Please enter x value: ");
x=Integer.parseInt(c.readLine());
System.out.println("Please enter y value: ");
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");
}
}
}
複製代碼
作者:
宋威廷
時間:
2019-7-2 11:11
import java.io.Console;
public class CH08
{
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");
}
}
}
複製代碼
作者:
賴駿榮
時間:
2019-7-2 11:11
import java.io.Console;
public class ch07
{
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");
if (x<=y)
System.out.println("x小於y");
if (x==y)
System.out.println("x等於y");
}
}
複製代碼
回復
1#
tonyh
作者:
謝宗佑
時間:
2019-7-2 11:12
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");
}
}
複製代碼
作者:
李沛儒
時間:
2019-7-2 11:15
import java.io.Console;
public class Ch09
{
public static void main(String args[])
{
Console c=System.console();
int x,y;
System.out.println("請問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 ");
}
}
複製代碼
作者:
蔡杰希
時間:
2019-7-2 11:15
import java.io.Console;
public class Ch09
{
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");
}
}
複製代碼
作者:
吳庭慈
時間:
2019-7-2 11:15
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");
}
}
複製代碼
作者:
張啟廣
時間:
2019-7-2 11:15
本帖最後由 張啟廣 於 2019-7-2 11:18 編輯
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("x=y");
}
}
複製代碼
作者:
王煦
時間:
2019-7-2 11:18
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這樣都不會?");
}
}
複製代碼
作者:
陳智鈞
時間:
2019-7-2 11:18
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://seed.istak.org.tw/)
Powered by Discuz! 7.2