摘要:
package Vehicle; public abstract class ColaEmployee { String name; int month ; int day ; int year; public ColaEmployee() { } public ColaEmployee(Strin 阅读全文
摘要:
1. package zy; public class test1 { int x; int y; test1() { } test1(int x0, int y0) { this.x = x0; this.y = y0; } public void movePoint(int dx, int dy 阅读全文
摘要:
1.编写一个方法,实现冒泡排序(由小到大),并调用该方法2.编写一个方法,求整数n的阶乘,例如5的阶乘是1*2*3*4*5。 [必做题]3.编写一个方法,判断该年份是平年还是闰年。[必做题]4.课堂没完成的menu菜单,实现幸运抽奖功能 package test; public class test 阅读全文