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
~321 People Reached
Favorite Forums
Favorite Tags
c++ x 7
Member Avatar for Nasi23

Hi guys im getting some errors here and cant seem to find why? [code] #include <iostream> #include <iomanip> using namespace std; class Student{ public: Student (Mary, 100, 99, 88, 1); void getInfo(); void showInfo(); private: string name; double test1, test2, test3; int idNum; }; Student::Student (string n, double t1, double …

Member Avatar for Alex Edwards
0
134
Member Avatar for Nasi23

Hi im trying to build this pay rate calculator but im getting a few errors: [code=cplusplus] #include <iostream> #include <string> #include <iomanip> using namespace std; struct Time{ int hr, min; char meridian; }; struct Garage{ string name; float rate; Time time_in, time_out; }; struct PayRecord{ string name; string position; int …

Member Avatar for stilllearning
0
187