標題:
兩數中找出較大的數
[打印本頁]
作者:
tonyh
時間:
2012-10-8 20:08
標題:
兩數中找出較大的數
import java.io.Console;
public class ch17
{
public static void main (String args[])
{
int a, b, bigger;
Console console=System.console();
System.out.print("請輸入第1個數: ");
a=Integer.parseInt(console.readLine());
System.out.print("請輸入第2個數: ");
b=Integer.parseInt(console.readLine());
bigger=(a>b)?a:b;
System.out.print("兩數中較大的數為: "+bigger);
}
}
複製代碼
作者:
晏有聰
時間:
2012-10-8 20:11
/* 比大小的sample */
import java.io.Console;
public class ch17
{
public static void main (String showdemo[])
{
int a,b,bigger;
Console console=System.console();
System.out.print("請輸入第1個數");
a=Integer.parseInt(console.readLine());
System.out.print("請輸入第2個數");
b=Integer.parseInt(console.readLine());
bigger=(a>b)?a:b;
System.out.print("兩數中較大數字="+bigger);
}
}
複製代碼
作者:
劉永記
時間:
2012-10-8 20:18
import java.io.Console;
public class ch17 //類別
{
public static void main (String arg[]) //方法
{
int a,b;
int bigger;
Console cs=System.console();
System.out.print("請輸入您的第一個數值");
a=Integer.parseInt(cs.readLine());
System.out.print("請輸入您的第二個數值");
b=Integer.parseInt(cs.readLine());
bigger=(a>b) ? a:b;
System.out.print("兩個數值中比較大的是 "+bigger);
/*
初始值;終止值;遞增或遞減的條件 ;i=i+1
for (int i=1; i<=10;i++)
whil 終止值
\t 代表鍵盤上的TAB鍵
(a>b)?a:b
*/
}
}
複製代碼
作者:
林立尉
時間:
2012-10-8 20:28
import java.io.Console;
public class ch18
{
public static void main (String args[])
{
int a, b, c, d, biga, bigb, bigi;
Console console=System.console();
System.out.print("請輸入第1個數: ");
a=Integer.parseInt(console.readLine());
System.out.print("請輸入第2個數: ");
b=Integer.parseInt(console.readLine());
System.out.print("請輸入第3個數: ");
c=Integer.parseInt(console.readLine());
System.out.print("請輸入第4個數: ");
d=Integer.parseInt(console.readLine());
biga=(a>b)?a:b;
bigb=(c>d)?c:d;
bigi=(biga>bigb)?biga:bigb;
System.out.print("兩數中較大的數為: "+bigi);
}
}
複製代碼
作者:
吳尚哲
時間:
2012-10-8 20:29
import java.io.Console;
public class ch17
{
public static void main (String args[])
{
int a, b, c, d, max;
Console console=System.console();
System.out.print("請輸入第1個數: ");
a=Integer.parseInt(console.readLine());
max = a;
System.out.print("請輸入第2個數: ");
b=Integer.parseInt(console.readLine());
max = (b>max?b:max);
System.out.print("請輸入第3個數: ");
c=Integer.parseInt(console.readLine());
max = (c>max?c:max);
System.out.print("請輸入第4個數: ");
d=Integer.parseInt(console.readLine());
max = (d>max?d:max);
System.out.print("4數中較大的數為: " + max);
}
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2