The process of finding the maximum value (i.e., the largest of a group of values) is used frequently in computer applications. For example, an app that determines the winner of a sales contest would input the number of units sold by each salesperson. The sales person who sells the most units wins the contest. Write pseudocode, then a C# app that inputs a series of 10 integers, then determines and displays the largest integer. Your app should use at least the following three variables:
- Counter: A counter to count to 10 (i.e., to keep track of how many nimbers have been input and to determine when all 10 numbers have been processed)
- Number: The integer most recently input by the user.
- Largest: The largest number found so far.
Please submit as a zip file.