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
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); } }
total answers (1)
start bookmarking useful questions and collections and save it into your own study-lists, login now to start creating your own collections.
Sample Output:
need an explanation for this answer? contact us directly to get an explanation for this answer