Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include "functions.h"
- #include <iostream>
- using namespace std;
- int main()
- {
- string studentNames[10] = { "Adam", "Becky", "Charles", "Deborah", "Ethan", "Frances", "Gretchen", "Herbert", "Isabel", "Justin" };
- int studentGrades[10] = {78, 83, 62, 57, 81, 90, 75, 88, 92, 71};
- formatStudentGrades(cout, studentNames, studentGrades, 10);
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement