Q:

Write a Java program to test that a given array of integers of length 2 contains a 4 or a 7

0

Write a Java program to test that a given array of integers of length 2 contains a 4 or a 7


Sample Output:

Original Array: [5, 7]                                                 
true 

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

import java.util.Arrays; 
 public class Exercise78 {
 public static void main(String[] args)
 {
    int[] array_nums = {5, 7};
	System.out.println("Original Array: "+Arrays.toString(array_nums)); 
	if(array_nums[0] == 4 || array_nums[0] == 7)
		System.out.println("True");
	else
    System.out.println(array_nums[1] == 4 || array_nums[1] == 7);
	 
 }
}

Sample Output:

Original Array: [5, 7]                                                 
true

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Similar questions


need a help?


find thousands of online teachers now