akosiraff

Student’s Grades VB 2010

Mar 19th, 2013
134
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.08 KB | None | 0 0
  1. Write a program that has a main form with the following attributes:
  2. A main form, with these attributes:
  3. At least 10 text boxes down the left side for the user to enter student names.
  4. 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.
  5. 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.
  6. Appropriately label each column, and put “The School of Computing” header on the form.
  7. Put two more text boxes that the user can not enter anything in, and label them “Average” and “Std. Dev.”
  8. Put a button on the form that says “Calculate”.
  9. When the user clicks the “Calculate” button:
  10. Find the average and standard deviation of the group, and show those in the appropriate textboxes.
  11. Using the standard 90-80-70-60 sequence, figure out the grade letter for each student and put it in the appropriate textbox
  12. 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