Question
C# 1. Create an application that prompts the user to enter a number between 0 and 100 in an iteration until the user has entered
C#
1. Create an application that prompts the user to enter a number between 0 and 100 in an iteration until the user has entered a number thats not within a valid range. After the user has entered all the numbers, display the number that the user has entered the most as well as the number of times the user has entered that number.
2. Given an array of integers, identify the largest EVEN number and the smallest ODD number. The method will return a decimal value that is the largest EVEN number divided by the smallest ODD number. If there are no such numbers, the method will return a zero instead. For example, if the array is {0, 1, 2, 3, 4, 5, 6, 7, 8, 9}, the method will return a 9 (because 9/1 is 9).
3. Given an array of integers, return the reverse of that array. For example, if the array is {1, 2, 3, 7, 8, 9}, the method
will return {9, 8, 7, 3, 2, 1}.
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started