返回列表 發帖

自訂函式 (一)

本帖最後由 tonyh 於 2019-7-3 21:13 編輯

自訂函式:
1. void hello(int n)
2. int myPlus(int x,int y,int z)


  1. public class Ch50 {

  2.         static void hello(int n)
  3.         {
  4.                 for(int i=0; i<n; i++)
  5.                     System.out.println("Hello!!!");
  6.         }
  7.        
  8.         static int myPlus(int a, int b, int c)
  9.         {
  10.                 return a+b+c;
  11.         }
  12.        
  13.         public static void main(String[] args)
  14.         {
  15.                 hello(5);
  16.                 System.out.println(myPlus(1,2,3));
  17.         }
  18. }
複製代碼
附件: 您需要登錄才可以下載或查看附件。沒有帳號?註冊

  1. public class Ch50 {

  2.     static void hello(int n){
  3.             for(int i=0; i<n; i++)
  4.         {
  5.                 System.out.println("hello");
  6.         }
  7.     }
  8.     static int myPlus(int a,int b, int c){
  9.            
  10.             return a+b+c;
  11.     }

  12.         public static void main(String[] args){
  13.                 hello(5);
  14.                 System.out.println(myPlus(1,3,5));
  15.         }

  16. }
複製代碼
May

TOP

  1. public class Ch{
  2.      static void hello (int n)
  3.         {
  4.                          for(int i=0;i<n;i++);
  5.                         System.out.println("Heiio!!");
  6.         }
  7.                
  8.              static int myPlus(int a,int b, int c)
  9.         {
  10.                      return a+b+c;
  11.         }
  12.                    
  13.            public static void main(String[]args)
  14.         {
  15.                  hello(5);
  16.                  System.out.println(myPlus(1,2,3));
  17.         }                          
  18. }          
複製代碼

TOP

  1. public class Ch02
  2. {
  3.    static void hello(int n)
  4.     {
  5.            for (int i=0;i<n;i++)
  6.          System.out.println("Hello!!!");          
  7.     }
  8.    static int myPlus(int a,int b,int c)
  9.      {
  10.            return a+b+c;
  11.      }
  12.         public static void main(String[] args)
  13.           {
  14.                 hello(5);
  15.                 System.out.println(myPlus(1,2,3));
  16.           }
  17. }
複製代碼

TOP

  1. public class Ch13 {
  2.         static void Hello(int n)
  3.         {
  4.                 for(int i=1;i<n;i++)
  5.                 {
  6.                         System.out.println("Hello");
  7.                 }
  8.         }
  9.         static  int myPLUS(int a,int b,int c){
  10.                 return a+b+c;
  11.         }
  12.         public static void main(String[] args) {
  13.                 Hello(77);
  14.                 System.out.println(myPLUS(489,555555,63666));
  15.                
  16.         }
  17. }
複製代碼

TOP

  1. public class Ch10
  2. {
  3.     static void hello(int n)
  4.     {
  5.             for(int i=0;i<n;i++)
  6.                     System.out.println("Hello!!!");
  7.     }
  8.         static int myPlus(int a,int b,int c)
  9.         {
  10.                 return a+b+c;
  11.         }
  12.        
  13.         public static void main(String args[])
  14.     {
  15.             hello(2);
  16.             System.out.println(myPlus(468,855,534));
  17.     }
  18. }
複製代碼

TOP

本帖最後由 楊于暄 於 2019-1-25 10:24 編輯
  1. public class Ch29
  2. {
  3.         static void hello(int n)
  4.         {
  5.                 for(int i=0; i<n; i++)
  6.                         System.out.println("Hello!");
  7.         }
  8.         static int myplus(int a, int b, int c)
  9.         {
  10.                 return a+b+c;
  11.         }
  12.         public static void main(String[] args)
  13.         {
  14.                 hello(5);
  15.                 System.out.println(myplus(1,2,3));
  16.         }
  17. }
複製代碼

TOP

  1. public class Ch01
  2. {
  3.     static void hello()
  4.     {
  5.             System.out.println("hello");
  6.     }
  7.        
  8.     static int myPlus(int a,int b,int c )
  9.     {
  10.             return a+b+c;
  11.     }
  12.         public static void main(String[] args)
  13.         {
  14.                 hello();
  15.             System.out.println(myPlus(1,2,3));
  16.         }

  17. }
複製代碼

TOP

返回列表