Wth is wrong with this code? I think my colons, semicolons and brackets are okay. How is 'idnumber' not declared in this scope? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

Wth is wrong with this code? I think my colons, semicolons and brackets are okay. How is 'idnumber' not declared in this scope?

class id {public: id (int a) {setidnumber(idn);} void setidnumber(int x) {idnumber = x; } string getresidence() {return residence;} private: string residence;}; int main() {id ob1 ("1234"); id ob2 ("3456"); cout << ob1.getresidence();}

9th Mar 2017, 9:02 AM
sarahlavish
sarahlavish - avatar
3 Answers
+ 3
u need a private variable idnumber to store the id number (hehe) and on id constructor is setidnumber(a); not setidnumber(idn) couse idn isnt defined, also in main remember that anything within coutes are strings so "1234" is not an int.
9th Mar 2017, 9:16 AM
Hector Sulbaran
Hector Sulbaran - avatar
+ 3
Lol. Thanks, Hector. That was easy. Though it works with setidnumber(idn) too. Thank you.
9th Mar 2017, 9:21 AM
sarahlavish
sarahlavish - avatar
+ 3
luka, i don't code that way, though. i just put it that way to post here
9th Mar 2017, 9:29 AM
sarahlavish
sarahlavish - avatar