Question: Create a Windows Application that allows a string representing a series of numbers separated by commas to be entered. Here is an example of valid
Create a Windows Application that allows a string representing a series of numbers separated by commas to be entered. Here is an example of valid input:
17,19,100,21,18,6
Your program should retrieve the string of characters. For maximum credit, create a Windows application that has a single control that can be used for inputting the numbers. Retrieve the numbers as a group (i.e. 17,19,100,21,18,6) and then have controls that displays the Sum, Average, and Smallest value.
HINT: To be able to process the values as individual numbers, consider using one or more methods of the string class, such as Split( ).
Also, provide a Reset Button with functionality that clears the display and gets it ready for the next set of values. Enlarge the size of the font for the controls to 14 points. Change the background color for the form to a dark color.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
