Question: please i need help with this and the language is c++ ( use c++ to write it ) thank you Write a C++ program in
Write a C++ program in this new file. Hint: you can use helloworld.cpp as a template. In this new file, write a program that does the following: 1. (4 points) Accepts 10 integers from the user using an array and a loop. The user will type the input on the console. 2. (4 points) Prints the numbers entered by the user in reverse order from the order in which they were entered. This output is displayed on the console. 3. (8 points) Sorts the contents of the array from lowest to highest number and displays the numbers in this new, sorted order. o Note: You are allowed to use any existing sorting algorithm. However, you are NOT allowed to use a library implementation of the algorithm. You must implement the algorithm from scratch. o Two simple algorithms that could be used for this task are Bubble Sorte (url: https://en.wikipedia.org/wiki/Bubble s 2) and Insertion Sorte (url: https://en.wikipedia.org/wiki/Insertion c). You may implement either one or choose another one if you prefer
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
