- 注册
- 2002-10-12
- 消息
- 47,114
- 荣誉分数
- 2,376
- 声望点数
- 393
跟NEL哥差不多难度, 得看考试,
那问题我无法理解, 英语不好
数是自己写进去的,不是random的
1个array就够了
因为需要每次用完这个数就给他隐藏起来了
例如这次用了dice 1输入1,以后5次就都不能用1了
1.6 (array 1[1])
2.5 (array 1[1,2])
3.4..
5.2....
4.2.....
6.1.....
写个method
保存个index number
int idx = 0;
void input(){
int reada = getin();
int readb = getin();
for (int i=0;i<idx;i++) if (reada == arra) return;
if (((reada+readb) % 7) != 0) return;
idx++;
System.out.println(reada + " " + readb);
}
void test{
while (idx != 5) input();
}