Reverse your input array input: int numElements: Should be greater than one int[] intlist: an array of (numELements) elements output: int[] : an int[] of intList in reverse Example: ReverseArray(3, [1,2,3]) ===> [3,2,1]

Computer Networking: A Top-Down Approach (7th Edition)
7th Edition
ISBN:9780133594140
Author:James Kurose, Keith Ross
Publisher:James Kurose, Keith Ross
Chapter1: Computer Networks And The Internet
Section: Chapter Questions
Problem R1RQ: What is the difference between a host and an end system? List several different types of end...
icon
Related questions
Question
44
// create a loop that reads in the next int from the scanner to the intList
45
<YOUR CODE HERE>
46
47
// call the ReverseArray function
48
<YOUR CODE HERE>
49
50
System.out.print("Your output is: ");
51
// print the output from ReverseArray
52
<YOUR CODE HERE>
ww
53
54
55
}
Transcribed Image Text:44 // create a loop that reads in the next int from the scanner to the intList 45 <YOUR CODE HERE> 46 47 // call the ReverseArray function 48 <YOUR CODE HERE> 49 50 System.out.print("Your output is: "); 51 // print the output from ReverseArray 52 <YOUR CODE HERE> ww 53 54 55 }
import java.util.Scanner;
public class ReverseOrder {
Reverse your input array
6.
input:
8
int numElements: Should be greater than one
int[] intlist: an array of (numElements) elements
10
ουtput :
11
int[] : an int[] of intList in reverse
12
13
Example: ReverseArray(3, [1,2,3])
[3,2,1]
===>
14
15
public static int[] ReverseArray(int numElements, int[] intList) {
16
17
<YOUR CODE HERE>
18
19
}
20
/*
Your first input (number of integers that follow by spaces) should be positive.
21
22
23
Example:
24
User input: 3 1 2 4
Your output: 42 1
Explanation: 3 is number of integers, 1 2 4 are elements of the array
25
26
27
28
29 >
public static void main(String[] args) {
30
int numElements;
31
int intData;
32
int i;
33
int[] intList;
System.out.print("Enter your input: ");
// Initialize a Scanner for system input
34
35
36
<YOUR CODE HERE>
37
38
// Read the next integer from the Scanner and save to your numElements
<YOUR CODE HERE>
ww m
39
40
41
// initilize intlist with numElement size
ww ww
42
<YOUR CODE HERE>
43
Transcribed Image Text:import java.util.Scanner; public class ReverseOrder { Reverse your input array 6. input: 8 int numElements: Should be greater than one int[] intlist: an array of (numElements) elements 10 ουtput : 11 int[] : an int[] of intList in reverse 12 13 Example: ReverseArray(3, [1,2,3]) [3,2,1] ===> 14 15 public static int[] ReverseArray(int numElements, int[] intList) { 16 17 <YOUR CODE HERE> 18 19 } 20 /* Your first input (number of integers that follow by spaces) should be positive. 21 22 23 Example: 24 User input: 3 1 2 4 Your output: 42 1 Explanation: 3 is number of integers, 1 2 4 are elements of the array 25 26 27 28 29 > public static void main(String[] args) { 30 int numElements; 31 int intData; 32 int i; 33 int[] intList; System.out.print("Enter your input: "); // Initialize a Scanner for system input 34 35 36 <YOUR CODE HERE> 37 38 // Read the next integer from the Scanner and save to your numElements <YOUR CODE HERE> ww m 39 40 41 // initilize intlist with numElement size ww ww 42 <YOUR CODE HERE> 43
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 3 steps with 1 images

Blurred answer
Recommended textbooks for you
Computer Networking: A Top-Down Approach (7th Edi…
Computer Networking: A Top-Down Approach (7th Edi…
Computer Engineering
ISBN:
9780133594140
Author:
James Kurose, Keith Ross
Publisher:
PEARSON
Computer Organization and Design MIPS Edition, Fi…
Computer Organization and Design MIPS Edition, Fi…
Computer Engineering
ISBN:
9780124077263
Author:
David A. Patterson, John L. Hennessy
Publisher:
Elsevier Science
Network+ Guide to Networks (MindTap Course List)
Network+ Guide to Networks (MindTap Course List)
Computer Engineering
ISBN:
9781337569330
Author:
Jill West, Tamara Dean, Jean Andrews
Publisher:
Cengage Learning
Concepts of Database Management
Concepts of Database Management
Computer Engineering
ISBN:
9781337093422
Author:
Joy L. Starks, Philip J. Pratt, Mary Z. Last
Publisher:
Cengage Learning
Prelude to Programming
Prelude to Programming
Computer Engineering
ISBN:
9780133750423
Author:
VENIT, Stewart
Publisher:
Pearson Education
Sc Business Data Communications and Networking, T…
Sc Business Data Communications and Networking, T…
Computer Engineering
ISBN:
9781119368830
Author:
FITZGERALD
Publisher:
WILEY