运行 ❯
获取您自己的
Java 服务器
×
更改方向
更改主题,暗/亮
转到 Spaces
// Import the HashSet class import java.util.HashSet; public class Main { public static void main(String[] args) { // Create a HashSet object called numbers HashSet<Integer> numbers = new HashSet<Integer>(); // Add values to the set numbers.add(4); numbers.add(7); numbers.add(8); // Show which numbers between 1 and 10 are in the set for(int i = 1; i <= 10; i++) { if(numbers.contains(i)) { System.out.println(i + " was found in the set."); } else { System.out.println(i + " was not found in the set."); } } } }
1 在集合中未找到。
2 在集合中未找到。
3 在集合中未找到。
4 在集合中找到。
5 在集合中未找到。
6 在集合中未找到。
7 在集合中找到。
8 在集合中找到。
9 在集合中未找到。
10 在集合中未找到。