Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
2
Posts with Downvotes
1
Downvoting Members
2
0 Endorsements
~473 People Reached
Favorite Forums
Favorite Tags
Member Avatar for kmlilo

#include <iostream> #include <cmath> #include <string> #include <fstream> #include <windows.h> using namespace std; struct Grade{ int getA; int getB; int getC; int getD; int getF; float marks[100]; }; void init( Grade* student ){ student->getA=0; student->getB=0; student->getC=0; student->getD=0; student->getF=0; for( int i=0; i < 100 ; i++) student->marks[i]=NULL; } int readFile( …

Member Avatar for deceptikon
0
277
Member Avatar for kmlilo

You are to write a program that will allow Apollo College to maintain the marks and grades of its students in a programming class. Assume there are ten students in the class. Your program will need to store the following information for each of the students: 1. Student’s name, to …

Member Avatar for DeanMSands3
0
196