控制台输入一组数字,存放到集合中,统计数字大于10的个数并输出。删除小于10的所有元素,输出元素内容(用arraylist方法写
时间: 2023-05-22 08:03:07 浏览: 55
很高兴为您服务!以下是满足您需求的代码:
import java.util.*;
public class Main {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in); // 输入数字
List<Integer> nums = new ArrayList<>();
while (scanner.hasNext()) {
int num = scanner.nextInt();
nums.add(num);
}
int count = 0;
ListIterator<Integer> it = nums.listIterator();
while (it.hasNext()) { // 统计数字大于10的个数
int num = it.next();
if (num > 10) {
count++;
} else {
it.remove(); // 删除小于10的元素
}
}
System.out.println("大于10的数字个数为:" + count);
System.out.println("元素内容为:" + nums);
}
}
如果您还有其他问题,请继续问吧!
阅读全文