本帖最後由 tonyh 於 2019-7-3 21:13 編輯
自訂函式:
1. void hello(int n)
2. int myPlus(int x,int y,int z)
 - public class Ch50 {
- static void hello(int n)
- {
- for(int i=0; i<n; i++)
- System.out.println("Hello!!!");
- }
-
- static int myPlus(int a, int b, int c)
- {
- return a+b+c;
- }
-
- public static void main(String[] args)
- {
- hello(5);
- System.out.println(myPlus(1,2,3));
- }
- }
複製代碼 |