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

[code] #include <iostream> using namespace std; class person { private: string name; int age; public: person(const string &getname): name(getname), age(0){ } void addAge(const string &getname) { age++; } void getAge(void) { cout << endl; cout << name << " now " << age << " years old"; } }; int …

Member Avatar for mvmalderen
0
147
Member Avatar for handytxg

Hi guys, I have list of class contain list of another class. [code] MyMessages class { ID list <myPackets> Packets; } myPackets class { Seq Text } [/code] I need advice which one is the right way to set myMessages class?? [code] void set_myMessages(const int &ID, list <myPackets> Packets) [/code] …

Member Avatar for handytxg
0
177
Member Avatar for handytxg

Hi, I need to convert english to morse code, atm Im using iterator and store the morsecode in vector. and store the result on new vector the problems is it'doesn't do the line properly. when I try to change the itr instead of store to new vector i't give me …

Member Avatar for Ancient Dragon
0
157
Member Avatar for handytxg

Hi, I'm new here and need help with if problems. [code] int main(int argc, char *argv[]) { list<char> charList; vector<vectordata> myvector; if (argc != 4) { printf("Syntax : euro file\n"); return 0; } cout << argv[1]; if ( argv[1] == "e" ) { loadList2(charList, argv[2]); //printList(charList); loadList(myvector); encode(charList, myvector); printvectordata(vectorresult, …

Member Avatar for handytxg
0
89