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