Question: You will create a program with two methods, the main() method of course and another method called printArray(). The main method will define an array
You will create a program with two methods, the main() method of course and another method called printArray(). The main method will define an array of 5 elements. A loop will be used to prompt the user to enter 5 numeric values which will go into the 5 array elements. The main() method will then call the printArray() method passing the array by reference, and the array length by value. The printArray() method will then print the contents of the array, 0th element first and return. The method call might look something like this: printArray(myArray, 5)
In Visual Logic be sure to use console I/O or you will lose points.
Here is one example of what the program I/O might look like:
Please enter 5 number values:
Value 1: 6
Value 2: 5
Value 3: 4
Value 4: 4
Value 5: 3
Here is the array contents:
Array(0) = 6
Array(1) = 5
Array(2) = 4
Array(3) = 4
Array(4) = 3
Hint: In Visual Logic you create a method (Visual Logic calls them "procedures") by using the "procedures" menu item. Click to drop it down and you will find a list of all existing procedures in the program plus the "Create new procedure..." command. Each procedure will be its own flow chart. You can switch between the flowcharts by using the "Procedures" menu and selecting the name of the procedure you wish to view/edit.
Please Can you try it on the visual logic, and post its image of this assignment. I would very appreciate your help.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
