返回列表 發帖

函式的建立與執行 (二)

建立並執行一個專門計算三角形面積的函式.
  1. public class ch50
  2. {
  3.     public static void main(String args[])
  4.     {
  5.         System.out.println(triangle(3,5));
  6.     }

  7.     public static float triangle(float x, float y)
  8.     {
  9.         return x*y/2;
  10.     }
  11. }
複製代碼

  1. public class ch50
  2. {
  3.     public static void main(String args[])
  4.     {
  5.         System.out.println(triangle(3,5));
  6.     }

  7.     public static float triangle(float x, float y)
  8.     {
  9.         return x*y/2;
  10.     }
  11. }
複製代碼

TOP

  1. public class ch50{
  2.   public static void main(String args[]){
  3.     System.out.println(triangle(3,5));
  4.     }
  5.   public static float triangle(float x, float y){
  6.     return x*y/2
  7.   }
  8. }
複製代碼
陳彥綸

TOP

  1. public class ch50
  2. {
  3.     public static void main(String args[])
  4.     {
  5.         System.out.println(triangle(3,5));
  6.     }

  7.     public static float triangle(float x, float y)
  8.     {
  9.         return x*y/2;
  10.     }
  11. }
複製代碼

TOP

  1. public class ch50
  2. {
  3.     public static void main(String args[])
  4.     {
  5.         System.out.println(triangle(3,5));
  6.     }
  7.     public static float triangle(float x, float y)
  8.     {
  9.         return x*y/2;
  10.     }
  11. }
複製代碼

TOP

  1. public class ch50
  2. {
  3.     public static void main(String args[])
  4.     {
  5.         System.out.println(triangle(3,5));
  6.     }

  7.     public static float triangle(float x, float y)
  8.     {
  9.         return x*y/2;
  10.     }
  11. }
複製代碼

TOP

  1. public class ch50
  2. {
  3.     public static void main(String args[])
  4.     {
  5.       System.out.println(triangle(3,5));
  6.     }

  7.     public static float triangle(float x ,float y)
  8.     {
  9.       return x*y/2;

  10.     }
  11. }
複製代碼

TOP

  1. public class ch50
  2. {
  3.     public static void main(String args[])
  4.     {
  5.         System.out.println(triangle(3,5));
  6.     }

  7.     public static float triangle(float x, float y)
  8.     {
  9.         return x*y/2;
  10.     }
  11. }
複製代碼

TOP

  1. import java.util.Arrays;
  2. public class ch49
  3. {
  4.     public static void main(String args[])
  5.     {
  6.       System.out.println(triangle(3,5));
  7.     }
  8.     public static float triangle(float a,float b)
  9.     {
  10.         return a*b/2;
  11.     }
  12. }
複製代碼

TOP

  1. public class ch50
  2. {
  3.     public static void main(String args[])
  4.     {
  5.         System.out.println(triangle(3,5));
  6.     }

  7.     public static float triangle(float a, float b)
  8.     {
  9.         return a*b/2;
  10.     }
  11. }
複製代碼

TOP

返回列表