Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Write a program that has a main form with the following attributes:
- A main form, with these attributes:
- At least 10 text boxes down the left side for the user to enter student names.
- To the right of each of those, a column of text boxes for the user to enter the student’s point grade. Must be between 0 and 100.
- To the right of each of those, a column of text boxes that the user can not enter anything, but will contain the student’s grade when you are done calculating it.
- Appropriately label each column, and put “The School of Computing” header on the form.
- Put two more text boxes that the user can not enter anything in, and label them “Average” and “Std. Dev.”
- Put a button on the form that says “Calculate”.
- When the user clicks the “Calculate” button:
- Find the average and standard deviation of the group, and show those in the appropriate textboxes.
- Using the standard 90-80-70-60 sequence, figure out the grade letter for each student and put it in the appropriate textbox
- You may find it of value to take the user’s values into an array to do the calculations.
Advertisement
Add Comment
Please, Sign In to add comment