Answer to Question #283585 in C++ for Rameen

Question #283585


The DSA City tax office solve the tax related problems of their citizens A large number of peopl visit this office on the daily basis. However, beating capacity of the waiting room for the visitors 30 persons Wher the waiting mom gets full no other vialtor is allowed to enter the tax office unti someone leaves The tax office want to automate the process of dealing with customers by issung them tokens for their turn. They have decided to issue the token numbers and process theme increasing fashion that is, a person having the token of lowest value is called first forming the tax office representative.

Your job is to help tax office to implement this APT in C++ A Propose appropriate data structure Write complete class having all required functions, main() function is not required. Add comeent to explain program


1
Expert's answer
2021-12-30T01:37:14-0500






// Data Members

int roll;

int age;

int marks;

     

// Member Functions

void printDetails()

{

    cout<<"Roll = "<<roll<<"\n";

    cout<<"Age = "<<age<<"\n";

    cout<<"Marks = "<<marks;

}

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
New on Blog