Question: 5 2 8 0 4 0 . 3 4 8 9 5 2 8 . q 3 z q y 7 Jump to level 1

528040.3489528.q3zqy7
Jump to level 1
Integer arrays origArr and cleaningArr are read from input, each containing three elements. If an element in origArr is not a multiple of the corresponding element in cleaningArr, replace the element in origArr with the corresponding element in cleaningArr times 5.
Ex: If the input is:
36,45,25
7,9,5
then the output is:
3545,25
Note: Given integers A and B, A is a multiple of B only if A % B ==0.
int i;
for NUM_VALS; ++i){
origArr[i]=scnr*nextInt();
}
for NUM_VALS; ++i){
cleaningArr [i]=scnr*nextInt();
}
Y* Your code goes here */
for ; i origArr.length; ++i){
System.out.print(origArr[i]+"");
}
System.out.println();
}
 528040.3489528.q3zqy7 Jump to level 1 Integer arrays origArr and cleaningArr are

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!