代码拉取完成,页面将自动刷新
package GIT;
public class School {
//报名入学接口
interface ISignUp{
// 打印输出结果
public void print();
// 检查是否有 stuType对应的班级名额
// 如果没有剩余名额,请返回 false ,否则学生将报名进入该班级并返回 true
public boolean addStudent (int stuType);
// 解析命令行输入的参数(格式),如文档描述
public static IParams parse() throws Exception{
}
}
interface IParams {
// 获取大班名额
public int getBig();
// 获取中班名额
public int getMedium();
// 获取小班名额
public int getSmall();
// 获取入学序列,例如 [1 2 2 3] 表示 依次报名入学一名大班学生,中班学生,中班学生,小班学生
public ArrayList<Integer> getPlanSignUp ();
}
public class SchoolSystem implements ISignUp {
public void print() {
System.out.println();
}
public boolean addStudent (int stuType) {
}
}
public static void main(String[] args) throws Exception {
IParams params = ISignUp.parse();//SchoolSystem.parse();
SchoolSystem sc = new SchoolSystem (params.getBig(), params.getMedium(),params.getSmall());
ArrayList<Integer> plan = params. getPlanSignUp ();
for (int i = 0; i < plan.size(); i++) {
sc. addStudent (plan.get(i));
}
sc.print();
System.out.println("修改过一次辣");
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。