本帖最後由 李泳霖 於 2022-1-28 09:02 編輯
- 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));
- }
- }
複製代碼 |