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);
}

}

}

posted @ 2016-05-29 08:21  暗蓝幻灭  阅读(275)  评论(0编辑  收藏  举报