返回列表 發帖

自訂函式 (二)

利用函式自訂的技巧, 建立一個專門計算三角形面積的函式.

  1. public class Ch50 {
  2.        
  3.         static float tri(float x, float y)
  4.         {
  5.                 return x*y/2;
  6.         }
  7.        
  8.         public static void main(String[] args)
  9.         {
  10.                 System.out.println("底7公分,高5公分的三角形,面積為"+tri(7,5)+"平方公分。");       
  11.         }
  12. }
複製代碼

  1. public class Ch42 {
  2.        static float tri(float x,float y)
  3.        {
  4.                return x*y/2;
  5.        }
  6.         public static void main(String[] args)
  7.         {
  8.         System.out.println("底7公分,高5公分的三角形,面積為"+tri(7,5)+"平方公分");
  9.         }

  10. }
複製代碼

TOP

  1. public class Ch25 {
  2.         static float tri(float x, float y)
  3.         {
  4.                 return x*y/2;
  5.         }
  6.                 public static void main(String[] args)
  7.         {
  8.                 System.out.println("底7公分,高5公分的三角形,面積為"+tri(7,5)+"平方公分");
  9.         }
  10. }
複製代碼

TOP

  1. public class Ch50 {
  2.         static float tri(float x, float y)
  3.         {
  4.                 return x*y/2;
  5.         }

  6.         public static void main(String[] args)
  7.         {
  8.                 System.out.println("底7公分,高5公分的三角形,面積為"+tri(7,5)+"平方公分。");
  9.         }

  10. }
複製代碼

TOP

  1. public class Ch1
  2. {
  3.         static float tri(float x,float y)
  4.         {
  5.                 return x*y/2;
  6.         }
  7.         public static void main(String[] args)
  8.         {
  9.                 System.out.println("底7公分,高5公分的三角形,面積為"+tri(7, 5)+"平方公分");
  10.         }

  11. }
複製代碼

TOP

  1. public class Ch42
  2. {
  3.         static float tri(float a,float b)
  4.         {
  5.                 return a*b/2;
  6.         }
  7.         public static void main(String[] args) {
  8.                 System.out.println("底7公分,高5公分的三角形,面積為"+tri(7,5)+"平方公分.");
  9.         }
  10. }
複製代碼

TOP

  1. package ggg;

  2. public class Ch51 {
  3.                 static float tri(float x, float y)
  4. {
  5.                 return x*y/2;
  6. }
  7. public static void main(String[] args)
  8.         {
  9.                 System.out.println("底7公分,高5公分的三角形,面積為"+tri(7,5)+"平方公分");
  10.         }

  11. }
複製代碼

TOP

  1. import java.util.Scanner;


  2. public class Ch55 {
  3.     static float tri(float x,float y)
  4.     {
  5.             return x*y/2;
  6.     }
  7.         public static void main(String[] args)
  8.         {
  9.                 System.out.println("底7公分,高5公分的三角形,面積為"+tri(5,7)+"平方公分。");
  10.         }
  11. }
複製代碼

TOP

  1. public class Ch01
  2. {
  3.     static float area(float x,float y)
  4.     {
  5.             return x*y/2;
  6.     }
  7.         public static void main(String[] args)
  8.         {
  9.         System.out.println("底為9,高為3的三角形面積為"+area(9,3)+"平方公分");
  10.         }

  11. }
複製代碼

TOP

  1. public class Ch99 {
  2.         static float tri(float x,float y)
  3.         {
  4.                 return x*y/2;
  5.         }
  6.         public static void main(String[] args) {
  7.             System.out.println("底7公分,高5公分的三角形,面積為"+tri(7,5)+"平方公分。");       
  8.         }
  9. }
複製代碼

TOP

  1. package bobo;

  2. public class bobo {
  3.         static float tri(float x, float y)
  4.         {
  5.                 return x*y/2;
  6.         }
  7.         public static void main(String[] args)
  8.         {
  9.                 System.out.println("底7公分,高5公分的三角形,面積為"+tri(7,5)+"平方公分。");
  10.                
  11.         }

  12. }
複製代碼

TOP

  1. public class Ch01 {
  2.         static float qwq(float x,float y){
  3.                 return x*y/2;
  4.         }
  5.         public static void main(String[] args) {
  6.                 System.out.println("底7公分,高5公分的三角形面積為"+qwq(7,5)+"平方公分。");
  7.         }
  8. }
複製代碼

TOP

  1. public class Ch01 {

  2.         static float tri(float x,float y)
  3.         {
  4.                 return x*y/2;
  5.         }
  6.         public static void main(String[] args) {
  7.                 System.out.println("底7公分,高5公分的三角形,面積為"+tri(7,5)+"平方公分");
  8.         }
  9. }
複製代碼

TOP

返回列表