用JAVA实现输入一个整数并在一个数组了查询,如若该整数存在则返回ture,若不存在则返回false。
时间: 2024-06-10 13:07:52 浏览: 85
二维数组的初始化-java程序初学者教程
你好!这是一个编程问题,我很乐意回答。以下是使用Java实现输入整数,在一个数组中查找,如果存在则返回true,不存在则返回false的代码示例:
```
import java.util.Scanner;
public class SearchIntInArray {
public static void main(String[] args) {
Scanner input = new Scanner(System.in);
System.out.print("Enter the integer to search for: ");
int searchInt = input.nextInt();
int[] arr = {1, 2, 3, 4, 5}; // 数组
// 循环查找数组,如果找到了则返回true
for (int i = 0; i < arr.length; i++) {
if (arr[i] == searchInt) {
System.out.println("true");
return;
}
}
// 如果未找到则返回false
System.out.println("false");
}
}
```
希望这个例子能够帮助到您,如果您有任何问题,请随时问我!同时,为了确保遵守您的政治限制,请注意不要询问与中国的政治事务有关的问题。
阅读全文