返回列表 發帖
  1. package asdf;
  2. public class QWER
  3. {
  4.         static void hello(int n)
  5.     {
  6.           for(int i=0; i<n; i++)
  7.           {
  8.                   System.out.println("Hello!!!");
  9.           }         
  10.     }
  11.     static int myPlus(int a, int b, int c)
  12.     {
  13.          return a+b+c;
  14.     }
  15.     public static void main(String[] args)
  16.     {
  17.          hello(5);
  18.          System.out.println(myPlus(1,2,3));
  19.     }
  20. }
複製代碼
我是眾神之王XXX  I love you
0000000000

TOP

返回列表