akosiraff

Download StudentInfo CPP

Aug 25th, 2015
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1.  
  2. Download: http://solutionzip.com/downloads/studentinfo-cpp/
  3. Write a C++ program to store 10 student names and grade point averages (GPAs) from the user. Display all student information in a tabular format. Ensure that each column heading aligns correctly with its respective column and that each name (first and last) is capitalized. Finally, display each GPA with two significant decimals. Sample inputs and outputs are as follows:
  4. Sample Input (for only 3 students)
  5. *****, ***** 4.0
  6. Jones, Bob 5.555
  7. *****, ***** 3.00
  8. Sample Output (using input above)
  9. Name (Last, First) GPA
  10. *****, ***** 4.00
  11. Jones, Bob 5.56
  12. *****, ***** 3.00
  13. Download: http://solutionzip.com/downloads/studentinfo-cpp/
Add Comment
Please, Sign In to add comment