1 Star 0 Fork 1

顾北/ssh key at home

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
SchoolSystem.java 2.02 KB
一键复制 编辑 原始数据 按行查看 历史
顾北 提交于 2022-09-27 12:01 . 代码
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;
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/luqixiu/ssh-key-at-home.git
git@gitee.com:luqixiu/ssh-key-at-home.git
luqixiu
ssh-key-at-home
ssh key at home
master

搜索帮助