標題:
四數中找出最大的數
[打印本頁]
作者:
tonyh
時間:
2012-10-8 20:23
標題:
四數中找出最大的數
本帖最後由 tonyh 於 2012-10-8 20:33 編輯
import java.io.Console;
public class ch18
{
public static void main (String args[])
{
int a, b, c, d, e, f, g;
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());
e=(a>b)?a:b;
f=(c>d)?c:d;
g=(e>f)?e:f;
System.out.print("四數中最大的數為: "+g);
}
}
複製代碼
作者:
晏有聰
時間:
2012-10-8 20:25
本帖最後由 晏有聰 於 2012-10-8 20:26 編輯
/* 比大小的sample */
import java.io.Console;
public class ch18
{
public static void main (String showdemo[])
{
int a,b,c,d,temp1,temp2,bigger;
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());
temp1=(a>b)?a:b;
temp2=(c>d)?c:d;
bigger=(temp1>temp2)?temp1:temp2;
System.out.print("四數中較大數字="+bigger);
}
}
複製代碼
作者:
蔡仕弘
時間:
2012-10-8 20:25
import java.io.Console;
public class ch17
{
public static void main (String args[])
{
int a,b,c,d,e,f,g,bigger;
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());
e=(a>b)?a:b;
f=(c>d)?c:d;
bigger=(e>f)?e:f;
System.out.print("四數中較大的數為:"+bigger);
}
}
複製代碼
作者:
白世忠
時間:
2012-10-8 20:25
import java.lang.*;
import java.io.Console;
public class ch18
{
public static void main(String args[])
{
Console console=System.console();
int a,b,c,d,bigger,biggerE,biggerF;
System.out.print("請輸入第一個字串: ");
a=Integer.parseInt(console.readLine());
System.out.print("請輸入第二個字串: ");
b=Integer.parseInt(console.readLine());
System.out.print("請輸入第二個字串: ");
c=Integer.parseInt(console.readLine());
System.out.print("請輸入第二個字串: ");
d=Integer.parseInt(console.readLine());
biggerE=(a>b)?a:b;
biggerF=(c>d)?c:d;
bigger=(biggerE>biggerF)?biggerE:biggerF;
System.out.println("您剛輸入最大數為: "+bigger);
}
}
複製代碼
作者:
劉永記
時間:
2012-10-8 20:27
import java.io.Console;
public class ch18 //類別
{
public static void main (String arg[]) //方法
{
int a,b,c,d;
int bigger,bigger1,sum;
Console cs=System.console();
System.out.print("請輸入您的第一個數值");
a=Integer.parseInt(cs.readLine());
System.out.print("請輸入您的第二個數值");
b=Integer.parseInt(cs.readLine());
System.out.print("請輸入您的第三個數值");
c=Integer.parseInt(cs.readLine());
System.out.print("請輸入您的第四個數值");
d=Integer.parseInt(cs.readLine());
bigger=(a>b) ? a:b;
bigger1=(c>d) ? c:d;
sum =(bigger > bigger1) ? bigger:bigger1;
System.out.print("四個數值中比較大的是 "+sum);
}
}
複製代碼
作者:
陳建志
時間:
2012-10-8 20:29
import java.io.Console;
public class ch18
{
public static void main(String args[])
{
int a, b, c, d, pigger ;
int ab, cd;
Console keyin=System.console();
System.out.println("四數中找出較大的數 ");
System.out.println("請輸入第一數 : ");
a = Integer.parseInt(keyin.readLine());
System.out.println("請輸入第二數 : ");
b = Integer.parseInt(keyin.readLine());
System.out.println("請輸入第三數 : ");
c = Integer.parseInt(keyin.readLine());
System.out.println("請輸入第四數 : ");
d = Integer.parseInt(keyin.readLine());
ab=(a>b)?a:b;
cd=(c>d)?c:d;
pigger=(ab>cd)?ab:cd;
System.out.println("最大數為"+ pigger);
}
}
複製代碼
作者:
許銘欽
時間:
2012-10-8 20:29
import java.io.Console; //引入java.io類別
public class ch17 //BMI計算
{
public static void main(String args[])
{
Console console = System.console();
float n1, n2, bigger12;
float n3, n4, bigger34;
float biggest;
System.out.print("請輸入數字1:");
n1 = Float.parseFloat(console.readLine());
System.out.print("請輸入數字2:");
n2 = Float.parseFloat(console.readLine());
System.out.print("請輸入數字3:");
n3 = Float.parseFloat(console.readLine());
System.out.print("請輸入數字4:");
n4 = Float.parseFloat(console.readLine());
bigger12 = (n1>n2)?n1:n2;
bigger34 = (n3>n4)?n3:n4;
biggest = (bigger12>bigger34)?bigger12:bigger34;
System.out.println("四數中,最大數為:"+biggest);
}
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2