public class test {
public static void main(String[] args) {
Set
Scanner s = new Scanner(System.in);
while (true) {
int a = s.nextInt();
if (a == 0) {
break;
} else {
set.add(a);
System.out.println(set.toString());
}
}
}
}
说明:利用set集合中元素不可重复的特性,可以作为参考,要是嫌输出的结果不太好看,可以重写下toString()方法。
测试结果:1
[1]
2
[1, 2]
3
[1, 2, 3]
3
[1, 2, 3]
0
输入0,就退出循环了,希望采纳!!