Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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 1. Otherwise, multiply the element in firstValues by 2.
Ex: If the input is:
12241841
20313734
then the output is:
11182 import java.util.Scanner;
public class ValuesComparison {
public static void main(String[] args){
Scanner scnr = new Scanner(System.in);
final int NUM_VALS =4;
int[] firstValues = new int[NUM_VALS];
int[] secondValues = new int[NUM_VALS];
int i;
for (i =0; i < NUM_VALS; ++i){
firstValues[i]= scnr.nextInt();
}
for (i =0; i < NUM_VALS; ++i){
secondValues[i]= scnr.nextInt();
}
/* Your code goes here */
for (i =0; i < firstValues.length; ++i){
System.out.print(firstValues[i]+"");
}
System.out.println();
}
}

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Machine Learning And Knowledge Discovery In Databases European Conference Ecml Pkdd 2010 Barcelona Spain September 2010 Proceedings Part 2 Lnai 6322

Authors: Jose L. Balcazar ,Francesco Bonchi ,Aristides Gionis ,Michele Sebag

2010th Edition

364215882X, 978-3642158827

Students also viewed these Databases questions

Question

5. Identify the essential functions of a job.

Answered: 1 week ago

Question

7. List behaviors to improve effective leadership in meetings

Answered: 1 week ago

Question

6. Explain the six-step group decision process

Answered: 1 week ago