方法自学

package StudentSystem;
//方法调用学习

public class StudentSystem {
public static void main (String[] args) {
int a;
int b;
int sum = playgame(6,5);
System.out.println(sum);

}

public static int playgame(int m, int n) {
int r = m + n;
return r;
}
}

posted @ 2022-09-07 19:41  YE-  阅读(16)  评论(0编辑  收藏  举报