返回列表 發帖
  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

返回列表