akosiraff

Download Integer C++

Nov 3rd, 2015
159
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.76 KB | None | 0 0
  1.  
  2. Download: http://solutionzip.com/downloads/integer-c/
  3. Write a program, which will ask the user how many integer numbers they wish to enter.
  4. The program will then read that many numbers, print them in the order they were entered,
  5. sort them in order by decreasing value, and print them in sorted order.
  6. All numbers entered and displayed will be integer values.
  7. The maximum number of integers to be handled will be 20.
  8. Sorting will be done in a function where the array will be the first parameter and the
  9. number of integers entered into the array will be the second parameter.
  10. Use an array to store the integer values.
  11. Use a modified version of the bubble sort algorithm provided in class to sort the integers.
  12. Download: http://solutionzip.com/downloads/integer-c/
Add Comment
Please, Sign In to add comment