Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~120 People Reached
Favorite Forums
Favorite Tags
c++ x 3
Member Avatar for dachy12

#include<iostream> #include<string> using namespace std; class student { public: void input(string name, long id, int grade1, int grade2, int grade3); void GPA(float) const; void Display() const; private: string name; int id; int grade1; int grade2; int grade3; }; int main() { string name; int id; int grade1,grade2,grade3; float gradepoint; student …

Member Avatar for dachy12
0
120