JAVA List集合题目1
Posted 暗蓝幻灭
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JAVA List集合题目1相关的知识,希望对你有一定的参考价值。
将1~100之中的所有正整数存放在集合中,并移除集合位置10中的数据。
import java.util.ArrayList;
public class JH2 {
public static void main(String[] args) {
ArrayList<Integer> ls = new ArrayList<Integer>();
for(int i = 1 ; i <= 100 ; i++)
{
ls.add(i);
}
ls.remove(10);
for(int a : ls)
{
System.out.println(a);
}
}
}
以上是关于JAVA List集合题目1的主要内容,如果未能解决你的问题,请参考以下文章