返回列表 發帖

207-三角形邊長判斷

import java.util.*;
public class JPA02 {
    static Scanner keyboard = new Scanner(System.in);
    public static void main(String[] args) {
        test();        
        test();
        test();
        test();
    }
   
    static void test() {
      
    }
}
Stay hungry,
Stay foolish.

  1. import java.util.Scanner;


  2. public class JPA01 {
  3.          static Scanner keyboard = new Scanner(System.in);
  4.             public static void main(String[] args) {
  5.                 test();        
  6.                 test();
  7.                 test();
  8.                 test();
  9.             }
  10.             
  11.             static void test() {
  12.             System.out.print("請輸入三個整數:")   ;
  13.             int a=keyboard.nextInt();
  14.             int b=keyboard.nextInt();
  15.             int c=keyboard.nextInt();
  16.             if(a+b>c&&c+b>a&&a+c>b&&a!=0&b!=0&&c!=0)
  17.             {
  18.             if(a*a+b*b==c*c||c*c+b*b==a*a||a*a+c*c==b*b)
  19.             {
  20.                      System.out.println("直角三角形")   ;       
  21.             }
  22.             else if(a*a+b*b<c*c||c*c+b*b<a*a||a*a+c*c<b*b)
  23.             {
  24.                      System.out.println("頓角三角形")   ;       
  25.             }
  26.             else
  27.             {
  28.                      System.out.println("銳角三角形")   ;       
  29.             }
  30.             }
  31.             else
  32.             {
  33.                     System.out.println("不可以構成三角形")   ;       
  34.             }
  35.             }
  36.         }
複製代碼

TOP

  1. package test;

  2. import java.util.Scanner;

  3. public class JPA02 {
  4. static Scanner keyboard = new Scanner(System.in);
  5.         public static void main(String[] args) {
  6.                
  7.                 // TODO 自動產生的方法 Stub
  8.                 test();        
  9.         test();
  10.         test();
  11.         test();
  12.         }
  13.          static void test() {
  14.                  System.out.print("請輸入三個整數 : ");
  15.                  int a=keyboard.nextInt();
  16.                  int b=keyboard.nextInt();
  17.                  int c=keyboard.nextInt();
  18.                  
  19.          if(a+b>c && a+c>b && b+c>a)
  20.          {
  21.                  if(a*a+b*b==c*c ||a*a+c*c==b*b ||b*b+c*c==a*a)
  22.                  {
  23.                          System.out.println("直角三角形");
  24.                  }
  25.                  else if(a*a+b*b<c*c ||a*a+c*c<b*b ||b*b+c*c<a*a)
  26.                  {
  27.                          System.out.println("鈍角三角形");
  28.                  }
  29.                  else if(a*a+b*b>c*c ||a*a+c*c>b*b ||b*b+c*c>a*a)
  30.                  {
  31.                          System.out.println("銳角三角形");
  32.                  }
  33.                  
  34.          }
  35.          else{
  36.                          System.out.println("不可構成三角形");
  37.                  }
  38.             }

  39. }
複製代碼

TOP

package jihgh;

import java.util.Scanner;

public class dbxdbff {
        static Scanner k = new Scanner(System.in);
   
        
        public static void main(String[] args) {
                // TODO 自動產生的方法 Stub

                test();        
        test();
        test();
        test();
        }

        private static void test() {
                System.out.print("請輸入三個數字");
                int a=k.nextInt();
                int b=k.nextInt();
                int c=k.nextInt();
     if(a+b>c && a+c>b && b+c>a)
     {
                if(a*a+b*b==c*c || c*c+a*a==b*b || c*c+b*b==a*a)
                {
                        System.out.println("直角三角形");
                }
                else if(a*a+b*b<c*c || c*c+a*a<b*b || c*c+b*b<a*a)
                {
                        System.out.println("頓角三角形");
                }
                else
                {
                        System.out.println("瑞角三角形");
                }
               
     }
     else
     {
             System.out.print("不可構成三角形");
     }
        }

}

TOP

返回列表