代码拉取完成,页面将自动刷新
package school;
import java.util.ArrayList;
import java.util.Scanner;
public class SchoolSystem implements ISignUp, IParams {
int big, medium, small;
static int n;
static Scanner s = new Scanner(System.in);
ArrayList<Integer> list = new ArrayList<>();
ArrayList<String> str = new ArrayList<>();
SchoolSystem() {
}
public SchoolSystem(int big, int medium, int small) {
this.big = big;
this.medium = medium;
this.small = small;
}
public boolean addStudent(int stuType) {
if (stuType < 1 || stuType > 3) {
str.add("null");
return false;
}
if (stuType == 1 && big > 0) {
list.add(1);
str.add("true");
big--;
return true;
} else if (stuType == 2 && medium > 0) {
list.add(2);
str.add("true");
medium--;
return true;
} else if (stuType == 3 && small > 0) {
list.add(3);
str.add("true");
small--;
return true;
}
str.add("false");
return false;
}
public static IParams parse() throws Exception {
System.out.print("输入大,中,小班幼儿园的剩余名额:\n");
int a = s.nextInt();
int b = s.nextInt();
int c = s.nextInt();
n = a + b + c;
return new SchoolSystem(a, b, c);
}
@Override
public void print() {
System.out.println(str);
}
@Override
public int getBig() {
return this.big;
}
@Override
public int getMedium() {
return this.medium;
}
@Override
public int getSmall() {
return this.small;
}
@Override
public ArrayList<Integer> getPlanSignUp() {
System.out.print("输入想进入的班级:\n");
for (int i = 0; i < n; i++) {
list.add(s.nextInt());
}
return list;
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。