如何在 Java 数组中查找所有元素对,其和等于给定数字?
如要在 Java 数组中查找所有元素对,其和等于给定数字 −
- 将数组中的每个元素与剩余所有元素相加(自身除外)。
- 验证和是否等于所需数字。
- 如果为真,打印其索引。
示例
import java.util.Arrays; import java.util.Scanner; public class sample { public static void main(String args[]){ //Reading the array from the user Scanner sc = new Scanner(System.in); System.out.println("Enter the size of the array that is to be created: "); int size = sc.nextInt(); int[] myArray = new int[size]; System.out.println("Enter the elements of the array: "); for(int i=0; i<size; i++){ myArray[i] = sc.nextInt(); } //Reading the number System.out.println("Enter the number: "); int num = sc.nextInt(); System.out.println("The array created is: "+Arrays.toString(myArray)); System.out.println("indices of the elements whose sum is: "+num); for(int i=0; i<myArray.length; i++){ for (int j=i; j<myArray.length; j++){ if((myArray[i]+myArray[j])== num && i!=j){ System.out.println(i+", "+j); } } } } }
输出
Enter the size of the array that is to be created: 8 Enter the elements of the array: 15 12 4 16 9 8 24 0 Enter the number: 24 The array created is: [15, 12, 4, 16, 9, 8, 24, 0] indices of the elements whose sum is: 24 0, 4 3, 5 6, 7
广告