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

[CODE]/********************************************** Complete the class "Musician" to produce the following output: Name = PK. Genre = Jazz Name = LG. Genre = Pop *********************************************************/ #include <iostream> #include <string> using namespace std; class Human { string name; public: Human (string name) : name(name) { } string getName() { return name; } }; …

Member Avatar for VernonDozier
0
97
Member Avatar for namelyia

hi.. i'm new here i try to do bingo program in separated file but my class name is not declare.. i search on internet on how to solve it but still gives me error can some one help me??? [CODE]#ifndef BINGO_H #define BINGO_H #include<iostream> #include<stdlib.h> #include <time.h> #include <string.h> using …

Member Avatar for namelyia
0
266