subject

Write a loop that sets newscores to oldscores shifted once left, with element 0 copied to the end. ex: if oldscores = {10, 20, 30, 40}, then newscores = {20, 30, 40, 10}. note: these activities may test code with different test values. this activity will perform two tests, the first with a 4-element array (newscores = {10, 20, 30, 40}), the second with a 1-element array (newscores = {199}).

public class studentscores {
public static void main (string [] args) {
final int scores_size = 4;
int[] oldscores = new int[scores_size];
int[] newscores = new int[scores_size];
int i = 0;
oldscores[0] = 10;
oldscores[1] = 20;
oldscores[2] = 30;
oldscores[3] = 40;

/* your solution goes here */

for (i = 0; i < scores_size; ++i) {
system. out. print(newscores[i] + " ");
}
system. out. println();
return;
}
}

ansver
Answers: 2

Another question on Computers and Technology

question
Computers and Technology, 22.06.2019 16:20
Octothorpe is another name for what common computer keyboard symbol?
Answers: 1
question
Computers and Technology, 23.06.2019 21:00
Uget brainliest if accurate mary has been given the responsibility of hiring a person for the position of a software testing officer. which management function would mary achieve this responsibility?
Answers: 1
question
Computers and Technology, 24.06.2019 16:30
Which program can damage your computer?
Answers: 1
question
Computers and Technology, 24.06.2019 17:40
Pseudocode pld #6, pg. 117 start// declarations// number numbertoguess// number myguess; numbertoguess = 92// while myguess ! = numbertoguess// output " guess an integer number between 1 and 100"// input myguess// if (myguess == numbertoguess)// output "you guessed the correct number"// else// output "the number you guessed was incorrect. try again! "// end if// end while// output " for playing the guessing game. have a great day! "// stop
Answers: 3
You know the right answer?
Write a loop that sets newscores to oldscores shifted once left, with element 0 copied to the end. e...
Questions
question
Biology, 17.12.2019 06:31
question
Mathematics, 17.12.2019 06:31
question
Mathematics, 17.12.2019 06:31
question
Social Studies, 17.12.2019 06:31
question
English, 17.12.2019 06:31
Questions on the website: 13722361