返回列表 發帖

自訂函式 (二)

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

  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 Ch01 {

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

TOP

  1. public class Ch06
  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("A triange with bottom 7cm, Height 5cm's area is "+tri(7,5)+" cm square.");
  11.         }
  12. }
複製代碼

TOP

  1. public class CH02
  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 Ch01 {
  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. }
複製代碼

TOP

  1. public class Ch02 {

  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 Ch18 {
  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. public class Ch03 {
  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("底七公分,高五公分的三角形,面積為"+tri(7,5)+"平方公分。");
  9.         }

  10. }
複製代碼

TOP

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

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

  10.         }

  11. }
複製代碼

TOP

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

  13. }
  14.        
  15.        
  16.        
  17.        
  18.        
  19.        
  20.        
  21.        
  22.        
複製代碼

TOP

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

TOP

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

TOP

  1. public class Ch01
  2. {
  3.                
  4.                
  5.                 static float tri(float a,float b)
  6.                 {
  7.                         return (a*b)/2;
  8.                 }

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

  13. }
複製代碼

TOP

  1. package o;

  2. import java.util.Scanner;

  3. import java.util.*;
  4. public class foraddfinal
  5. {
  6.        
  7.                 static float tri(float x, float y)
  8.                 {
  9.                         return x*y/2;
  10.                 }
  11.                
  12.                 public static void main(String args[])

  13.                 {
  14.                         System.out.println("Base is 7 cm, and height is 5, meaning the area is"+tri(7,5)+" cm。");        
  15.                 }
  16.         }
複製代碼

TOP

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

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

TOP

  1. public class Ch12 {

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

TOP

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

  11. }
複製代碼

TOP

  1. public class Ch87 {

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

TOP

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

TOP

  1. public class Ch20 {

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

  10.         }

  11. }
複製代碼

TOP

返回列表