返回列表 發帖

自訂函式 (二)

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

  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 ch02 {
  2.        
  3.         static float go(float a,float b){
  4.                 return a*b/2;
  5.         }
  6.         public static void main(String args[]){
  7.                 System.out.println("底7公分,高5公分的三角形,面積為"+go(7,5)+"平方公分");
  8.         }
  9. }
複製代碼
:))))))))))))))

TOP

  1. public class Ch04 {

  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

  1. public class Ch01 {
  2.         static float tri(float a, float b)
  3.         {
  4.                 return a*b/2;
  5.         }
  6.         public static void main(String[] args) {
  7.             System.out.println("底7公分,高5公分的三角形,面積為"+tri(7, 5)+"平方公分。");       
  8.         }
  9. }
複製代碼
巨槌瑞斯!!!誇爪!!!哈哈哈哈!!!
還敢下來阿冰鳥

TOP

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

TOP

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

TOP

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

TOP

  1. import java.util.Scanner;


  2. public class Ch11 {
  3.        
  4.         static float s(float  a,float b)
  5.         {
  6.                 return a*b/2;
  7.         }

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

  11.         }

  12. }
複製代碼

TOP

  1. import java.util.Scanner;
  2. import java.util.Arrays;
  3. public class Ch50 {
  4.         static float tri(float a,float b){
  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 Ch02 {

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

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.     {
  8.         System.out.println("底七公分,高五公分的三角形,面積為"+tri(5,7)+"平方公分");      
  9.     }
  10. }
複製代碼

TOP

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

TOP

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

TOP

  1. public class Ch01
  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 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.         {
  9.                 System.out.println("底7公分,高5公分的三角形,面積為"+tri(7,5)+"平方公分。");
  10.         }
  11.         }
複製代碼

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.         {
  8.                 System.out.println("底7公分,高5公分的三角形,面積為"+tri(7,5)+"平方公分。");
  9.         }



  10. }
複製代碼

TOP

返回列表