返回列表 發帖

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

  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.                 Scanner s=new Scanner(System.in);
  7.                 int a,b,c,d,e,f,g;
  8.                 System.out.print("Enter your four numbers: ");
  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("The biggest number is: "+g);       
  17.         }

  18. }
複製代碼

TOP

  1. import java.util.Scanner;
  2. public class Ch03 {
  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 Ch01
  3. {
  4.         public static void main(String[] args)
  5.         {
  6.                 Scanner s=new Scanner(System.in);
  7.                 float a,b,c,d,e,f,g;
  8.                 System.out.print("請輸入四個數:");
  9.                 a=s.nextFloat();
  10.                 b=s.nextFloat();
  11.                 c=s.nextFloat();
  12.                 d=s.nextFloat();
  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 A {
  3.     public static void main(String args[]){
  4.             Scanner s=new Scanner(System.in);
  5.             int a,b, c, d, e, f, g;
  6.             System.out.print("請輸入四個整數,用空白隔開:");
  7.            
  8.             a=s.nextInt();
  9.             b=s.nextInt();
  10.             c=s.nextInt();
  11.             d=s.nextInt();
  12.            
  13.             e=a>b?a:b;
  14.             f=c>d?c:d;
  15.            
  16.             g=e>f?e:f;
  17.             System.out.println(g+"為最大的數");
  18.     }
  19. }
複製代碼

TOP

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

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

TOP

  1. import java.util.Scanner;

  2. public class Ch09 {

  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("輸入4個數: ");
  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("4個數中最大為: "+g);
  17.         }
  18.     }
  19. }
複製代碼

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=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 Ch01
  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.                 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 Ch05
  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

返回列表