返回列表 發帖

三元運算子 - 四數中找出最大的數

  1. import java.util.Scanner;
  2. public class Ch10 {
  3.     public static void main(String[] args) {
  4.         int a, b, c, d, e, f, g;
  5.         Scanner s=new Scanner(System.in);
  6.         System.out.print("請依序輸入四個數: ");
  7.         a=s.nextInt();
  8.         b=s.nextInt();
  9.         c=s.nextInt();
  10.         d=s.nextInt();
  11.         e=a>b?a:b;
  12.         f=c>d?c:d;
  13.         g=e>f?e:f;
  14.         System.out.println("最大的數是: "+g);
  15.     }
  16. }
複製代碼

  1. import java.util.Scanner;
  2. public class Ch01
  3. {
  4.         public static void main(String args[])
  5.         {
  6.                 while(true)
  7.                 {
  8.                         Scanner s=new Scanner(System.in);
  9.                         int a, b, c, d, e, f, g;
  10.                         System.out.print("請依序輸入四個數:  ");
  11.                         a=s.nextInt();
  12.                         b=s.nextInt();
  13.                         c=s.nextInt();
  14.                         d=s.nextInt();
  15.                         e=a>b?a:b;
  16.                         f=c>d?c:d;
  17.                         g=e>f?e:f;
  18.                         System.out.println("最大的數是: "+g+"\n");
  19.                 }
  20.         }
  21. }
複製代碼

TOP

  1. import java.util.Scanner;

  2. public class Ch01 {

  3.         public static void main(String[] args)
  4.         {
  5.            int a,b,c,d,e,f,g;
  6.            Scanner s=new Scanner(System.in);
  7.            System.out.print("請依序輸入四個數: ");
  8.            a=s.nextInt();
  9.            b=s.nextInt();
  10.            c=s.nextInt();
  11.            d=s.nextInt();
  12.            e=a>b?a:b;
  13.            f=e>c?e:c;
  14.            g=f>d?f:d;
  15.            System.out.println("最大的數為: "+g);
  16.                
  17.         }

  18. }
複製代碼
巨槌瑞斯!!!誇爪!!!哈哈哈哈!!!
還敢下來阿冰鳥

TOP

  1. import java.util.Scanner;
  2. public class Ch10{
  3.         public static void main(String[] args) {
  4.                 while(true){
  5.                          Scanner s=new Scanner(System.in);
  6.                          int a,b,c,d,e,f,g;
  7.                          System.out.println("請依序輸入4個數: ");
  8.                          a=s.nextInt();
  9.                          b=s.nextInt();
  10.                          c=s.nextInt();
  11.                          d=s.nextInt();
  12.                          e=a>b?a:b;
  13.                          f=e>c?e:c;
  14.                          g=f>d?f:d;
  15.                          System.out.println("最大的數為: "+g+"\n");
  16.                 }
  17.         }
  18. }
複製代碼

TOP

  1. import  java.util.Scanner;
  2. public class ch02 {

  3.         public static void main(String[] args) {
  4.                 Scanner s=new Scanner(System.in);
  5.                 int a,b,c,d,e,f,g;
  6.                 while(true){
  7.                         System.out.print("請依序輸入四個數: ");
  8.                         a=s.nextInt();
  9.                         b=s.nextInt();
  10.                         c=s.nextInt();
  11.                         d=s.nextInt();
  12.                         e=a>b?a:b;
  13.                         f=e>c?e:c;
  14.                         g=f>d?f:d;
  15.                         System.out.println("四數中最大的數為:"+g+"\n");
  16.                 }
  17.         }
  18. }
複製代碼

TOP

  1. import java.util.Scanner;

  2. public class Ch02
  3. {

  4.         public static void main(String[] args)
  5.         {
  6.                 while(true)
  7.                 {
  8.                         Scanner s=new Scanner(System.in);
  9.                         int a,b,c,d,e,f,g;
  10.                         System.out.println("請依序輸入四個數: ");
  11.                         a=s.nextInt();
  12.                         b=s.nextInt();
  13.                         c=s.nextInt();
  14.                         d=s.nextInt();
  15.                         e=a>b?a:b;
  16.                         f=c>d?c:d;
  17.                         g=e>f?e:f;
  18.                         System.out.println("最大的數是:"+g);
  19.                 }            
  20.         }
  21. }
複製代碼

TOP

  1. import java.util.Scanner;
  2. public class Ch01 {

  3.         public static void main(String[] args) {
  4.                 while(true)
  5.                 {
  6.                         int a,b,c,d,e,f,g;
  7.                         Scanner s=new Scanner(System.in);
  8.                         System.out.println("請依序輸入四個數: ");
  9.                         a=s.nextInt();
  10.                         b=s.nextInt();
  11.                         c=s.nextInt();
  12.                         d=s.nextInt();
  13.                         e=a>b?a:b;
  14.                         f=c>d?c:d;
  15.                         g=e>f?e:f;
  16.                         System.out.println("四數中最大的數為: "+g+"\n");
  17.                 }
  18.     }
  19. }
複製代碼

TOP

  1. import java.util.Scanner;
  2. public class sdf {

  3.         public static void main(String[] args) {
  4.                 while (true)
  5.                 {
  6.                         int a,b,c,d,e,f,g;
  7.                         Scanner s=new Scanner(System.in);
  8.                         System.out.println("請依序輸入四個數:");
  9.                         a=s.nextInt();
  10.                         b=s.nextInt();
  11.                         c=s.nextInt();
  12.                         d=s.nextInt();
  13.                         e=a>b?a:b;
  14.                         f=c>d?c:d;
  15.                         g=e>f?e:f;
  16.                         System.out.println("最大的數是:"+g+"\n");
  17.                 }
  18.         }

  19. }
複製代碼

TOP

  1. import java.util.Scanner;

  2. public class CH03 {

  3.         public static void main(String[] args) {
  4.                 while(true)
  5.                 {
  6.                     Scanner s=new Scanner(System.in);
  7.                     int a, b, c , d, e, f, g;
  8.                     System.out.print("請依序輸入四個整數:");
  9.                     a=s.nextInt();
  10.                     b=s.nextInt();
  11.                     c=s.nextInt();
  12.                     d=s.nextInt();
  13.                     e=a>b?a:b;
  14.                     f=c>d?c:d;
  15.                     g=e>f?e:f;
  16.                     System.out.println("最大的數是:"+g+"\n");
  17.                 }
  18.         }

  19. }
複製代碼

TOP

  1. import java.util.Scanner;
  2. public class Ch03 {
  3.         public static void main(String[] args) {               
  4.                 while(true) {
  5.                     int a,b,c,d,e,f,g;
  6.                     Scanner s=new Scanner(System.in);
  7.                         System.out.print("請依序輸入四個數:");
  8.                         a=s.nextInt();
  9.                         b=s.nextInt();
  10.                         c=s.nextInt();
  11.                         d=s.nextInt();
  12.                         e=a>b?a:b;
  13.                         f=c>d?c:d;
  14.                         g=e>f?e:f;               
  15.                         System.out.println(g+"\n");
  16.                 }
  17.         }

  18. }
複製代碼

TOP

  1. import java.util.Scanner;

  2. public class Ch01
  3. {
  4.     public static void main(String ags[])
  5.     {
  6.             int a, b, c, d, e, f, g;
  7.             Scanner s=new Scanner(System.in);
  8.            
  9.             while(true)
  10.         {
  11.                     System.out.print("請依序輸入四個數: ");
  12.                 a=s.nextInt();
  13.                 b=s.nextInt();
  14.                 c=s.nextInt();
  15.                 d=s.nextInt();
  16.                 if(a>b)
  17.                         e=a;
  18.                 else if(a<b)
  19.                         e=b;
  20.                 else
  21.                         e=a;
  22.                 if(c>d)
  23.                         f=c;
  24.                 else if(c<d)
  25.                         f=d;
  26.                 else
  27.                         f=c;
  28.                 if(e>f)
  29.                         g=e;
  30.                 else if(e<f)
  31.                         g=f;
  32.                 else
  33.                         g=e;
  34.                 System.out.println("四數中最大的數為: "+g);
  35.                 System.out.println();
  36.         }
  37.     }
  38. }
複製代碼

TOP

  1. import java.util.Scanner;


  2. public class Ch01 {

  3.         public static void main(String[] args)
  4.         {
  5.                 while(true){int a,b,c,d,e,f,g;
  6.                         Scanner s= new  Scanner(System.in);
  7.                         System.out.println("請輸入4個數");
  8.                         a=s.nextInt();
  9.                         b=s.nextInt();
  10.                         c=s.nextInt();
  11.                         d=s.nextInt();
  12.                         e=a>b?a:b;
  13.                         f=c>d?c:d;
  14.                         g=e>f?e:f;
  15.                         System.out.println("最大的是"+g);}
  16.         }

  17. }
複製代碼

TOP

  1. import java.util.Scanner;
  2. public class Ch10
  3. {
  4.         public static void main(String[]args)
  5.         {       
  6.            int a,b,c,d,e,f,g;
  7.            Scanner s=new Scanner(System.in);
  8.            System.out.print("請依序輸入四個數: ");
  9.            a=s.nextInt();
  10.            b=s.nextInt();
  11.            c=s.nextInt();
  12.            d=s.nextInt();
  13.            e=a>b?a:b;
  14.            f=c>d?c:d;
  15.            g=e>f?e:f;
  16.            System.out.println("四數中最大的數為:"+g);
  17.         }
  18. }       
複製代碼

TOP

  1. import java.util.Scanner;
  2. public class Ch01
  3. {
  4.         public static void main(String[] args)
  5.         {
  6.            while(true)
  7.            {
  8.                
  9.                 int a,b,c,d,e,f,g;
  10.             Scanner s=new Scanner(System.in);
  11.             System.out.print("請依序輸入四個數");
  12.             a=s.nextInt();
  13.             b=s.nextInt();
  14.             c=s.nextInt();
  15.             d=s.nextInt();
  16.             e=a>b?a:b;
  17.             f=c>d?c:d;
  18.             g=e>f?e:f;
  19.             System.out.println("最大的數是:"+g);
  20.            }
  21.             
  22.             
  23.                
  24.         }

  25. }
複製代碼

TOP

  1. import java.util.Scanner;
  2. public class Ch01 {
  3.     public static void main(String[] args) {
  4.         int a, b, c, d, e, f, g;
  5.         Scanner s=new Scanner(System.in);
  6.         System.out.print("你最好給我依序輸入四個數: ");
  7.         a=s.nextInt();
  8.         b=s.nextInt();
  9.         c=s.nextInt();
  10.         d=s.nextInt();
  11.         e=a>b?a:b;
  12.         f=c>d?c:d;
  13.         g=e>f?e:f;
  14.         System.out.println("最大的數是: "+g);
  15.     }
  16. }
複製代碼

TOP

  1. import java.util.Scanner;
  2. public class Ch10 {
  3.         public static void main(String[] args) {
  4.                 while(true){
  5.                 float a, b, c, d, e, f, g;
  6.                 Scanner s=new Scanner(System.in);
  7.                 System.out.print("請輸入四個數: ");
  8.                 a=s.nextFloat();
  9.                 b=s.nextFloat();
  10.                 c=s.nextFloat();
  11.                 d=s.nextFloat();
  12.                 e=a>b?a:b;
  13.                 f=c>d?c:d;      
  14.                 g=e>f?e:f;
  15.                 System.out.println("最大的數是: "+g+"\n");               
  16.                 }
  17.         }
  18. }
複製代碼

TOP

返回列表