Board logo

標題: 自訂函式 (二) [打印本頁]

作者: tonyh    時間: 2020-2-5 09:58     標題: 自訂函式 (二)

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

  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. }
複製代碼

作者: 張宸翔    時間: 2020-2-5 10:21

  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. }
複製代碼

作者: 蔡承翰    時間: 2020-2-5 10:22

  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. }
複製代碼

作者: 邱翊博    時間: 2020-2-5 10:22

  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. }
複製代碼

作者: 盧弘毅    時間: 2020-2-5 10:22

  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. }
複製代碼

作者: 蘇宜貞    時間: 2020-2-5 10:23

  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. }
複製代碼

作者: 何蕙妘    時間: 2020-2-5 10:23

  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. }
複製代碼

作者: 沙芃妘    時間: 2020-2-5 10:23

  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. }
複製代碼

作者: 蘇行一    時間: 2020-2-5 10:24

  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. }
複製代碼

作者: 楊秉樺    時間: 2020-2-5 10:24

  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. }
複製代碼

作者: 劉家銘    時間: 2020-2-5 10:24

  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. }
複製代碼

作者: 黃煜城    時間: 2020-2-5 10:24

  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. }
複製代碼

作者: 陳梓瑜    時間: 2020-2-5 10:25

  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. }
複製代碼





歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/) Powered by Discuz! 7.2