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

[code] #include <iostream> //For console output #include <windows.h> // WinApi header using namespace std; #define EMPTY_CELL 177 #define CURSOR 1 #define TAIL 219 #define NUM 6 class Room { private: public: bool visited(); bool active(); Room(); // Default Constructor Room(bool visited, bool active); // Overloaded Constructor Room(const Room& node); // …

Member Avatar for WaltP
0
83
Member Avatar for Riya_Sen

This program is correct, it repeatedly asks the user to enter a score till you enter a negative or a number over 100. Than it adds all the scores and counts how many scores entered. Now the problem is I have to write a function called "average" that will will …

Member Avatar for ~s.o.s~
0
95
Member Avatar for Riya_Sen

[COLOR=#000000]This my first C++ programming class and I'm not that good with C++, so please help me out. This is due in 4 hours. This is what i got and i got a lot of errors. Thank you and once again please help me.[/COLOR] [COLOR=#000000]1.Repeatedly reads a student score (for …

Member Avatar for ~s.o.s~
0
88