Question: Integer arrays firstValues and secondValues are read from input, each containing four elements. If an element in firstValues is less than or equal to the
Integer arrays firstValues and secondValues are read from input, each containing four elements. If an element in firstValues is less than or equal to the corresponding element in secondValues then replace the element in firstValues with Otherwise, multiply the element in firstValues by
Ex: If the input is:
then the output is:
import java.util.Scanner;
public class ValuesComparison
public static void mainString args
Scanner scnr new ScannerSystemin;
final int NUMVALS ;
int firstValues new intNUMVALS;
int secondValues new intNUMVALS;
int i;
for i ; i NUMVALS; i
firstValuesi scnrnextInt;
for i ; i NUMVALS; i
secondValuesi scnrnextInt;
Your code goes here
for i ; i firstValues.length; i
System.out.printfirstValuesi;
System.out.println;
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
