返回列表 發帖

自定函式

  1. package function_test;

  2. public class test {

  3.         public static void main(String[] args) {
  4.                 int a=1,b=5;
  5.                 System.out.print(plus(a,b));
  6.         }

  7.         static int plus(int a,int b){
  8.                 return a+b;
  9.         }
  10. }
複製代碼

返回列表