返回列表 發帖

自訂函式 (二)

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

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

  2.         static float tri(float x, float y) {
  3.                 return x * y / 2;
  4.         }

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

TOP

  1. import java.util.Scanner;

  2. public class junior {

  3.         static double area(float a, float b) {
  4.                 return a * b / 2;
  5.         }

  6.         public static void main(String args[]) {

  7.                 double r = area(7, 5);
  8.                 System.out.print(r);

  9.         }
  10. }
複製代碼

TOP

  1. public class n {

  2.         static double myPlus(double a, double b)

  3.         {
  4.                 return a*b/2;
  5.         }
  6.        
  7. public static void main(String[] args) {

  8. System.out.println("底7高5的三角形的面積為"+myPlus(5,7));
  9. }

  10. }
複製代碼

TOP

  1. package text369;
  2. public class text45 {
  3.         static float io(float x,float y)
  4.         {
  5.                 return x*y/2;
  6.         }
  7.         public static void main(String[] args) {

  8.                 System.out.print("底7公分,高5公分的三角形,面積為"+io(7,5)+"平方公分");
  9.                
  10.         }

  11. }
複製代碼
張閎鈞OuO

TOP

  1. package asdf;
  2. public class QWER
  3. {
  4.          static float t(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公分的三角形,面積為"+t(7,5)+"平方公分。");        
  11.      }
  12. }
複製代碼
我是眾神之王XXX  I love you
0000000000

TOP

  1. public class Ch11 {
  2.        
  3.        
  4.         static void hello(int n){
  5.                
  6.                 for(int i=0;i<n;i++){
  7.                         System.out.println("Hello!!!");
  8.                 }               
  9.         }
  10.         static float tri(float a,float b ){
  11.                 return a*b/2;
  12.         }
  13.         public static void main(String[] args){
  14.                 System.out.println("底7公分,高5公分的三角形,面積為"+tri(7,5)+"平方公分。");
  15.                
  16.         }
  17.        
  18.        
  19. }
複製代碼

TOP

  1. import java.util.*;

  2. public class Ch01 {
  3.         static float tri(float x, float y) {
  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

本帖最後由 黃安立 於 2019-7-5 10:26 編輯
  1. public class Ch09 {
  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

返回列表