subject

PROGRAMMING LANGUAGE: C++ Q. No.1:

Deck of card contains 52 cards in total and catogrised in 4 different categories named as Heart, Diamond, Spade and Club. Each category contains 13 cards. Each category having cards denomination [2,3,4,5,6,7,8,9,10, J(Jack), Q(Queen), K(King), A(Ace)].

Suppose 4 cards are missing (we are unknown about missing cards) and remaining 48 mixed cards are distributed arbitrarily/randomly to 4 different players. Write down a C++ program to demonstrate the above-mentioned problem by adding three functions other than main() function:

A) First one is Sort() function which pack all these cards into one packet by arranging them in a sequence of all Spade card comes 1st in asending order, then all Club cards, then all Heart cards and at the end all Diamond cards.

B) Second one is displayCards() function which displays all sorted cards achieved in Part-A in the following format:

The Pack Cards are:

Card1: Spade 2

Card2: Spade 3





Card48: Diamond A

C) Third one is findMissing() function which displays the category and number of missing cards in the following format e. g.:

The Missing Cards of 20-Arid-yourNo:

Card1: Spade 4

Card2: Heart J

Card3: Club 10

Card4: Diamond 3

Note: You have to add the screen shot of your output of missing cards.

D) Fourth one is findMissingFromFile() function which reads all 48 sorted cards data from file "your_Arid_No. txt" (assume file is already available with all the sorted data e. g. Spade 2) and find & write missing cards into another file "missingCards. txt" in the following format:

Card1 Spade 4

Card2 Heart J

Card3 Club 10

Card4 Diamond 3

//Here is the main function for your help

int main()

{

Card Player1[12]={{D,4},{H,2},{S, A},};

//Incomplete values just to give idea, remaining you have to fill by yourself.

//{D,4} here D is for Diamond type and 4 is the card number in diamond category.

Card Player2[12]={};

Card Player3[12]={};

Card Player4[12]={};

Card Pack[48];

//Call of sort() Function, which sort all 4 player's cards in Pack array. You can assign 'N' as a null in a player array for the card number, if you picked that card and placed in Pack array.

//Call of display() function, which displays all sorted cards placed in Pack array

//Call of findMissing() function

//Call of findMissingFromFile() function

return 0;

}

ansver
Answers: 3

Another question on Computers and Technology

question
Computers and Technology, 22.06.2019 00:40
Reading characters and strings from the keyboard: consider the following c++ program 1. #include 2. #include 3. using namespace std; 4. mystring1 5. 6. int main() 7. { 8. 9. string mystring1, mystring2; mychar1 10. 11. 12. char mychar1, mychar2; 13. 14. cout< < "enter a string: "; mychar2 15. 16. cin> > mystring1; // 17. cin.get(mychar1); 18. cin> > mychar2; 19. getline(cin,mystring2); mystring2 20. 21. 22. cout<
Answers: 1
question
Computers and Technology, 24.06.2019 08:00
Can someone work out the answer as it comes up in one of my computer science exams and i don't understand the cryptovariables
Answers: 1
question
Computers and Technology, 24.06.2019 15:30
How do i change the size of my bookmarks in my bookmarks bar in google chrome? ? plz hlp me
Answers: 2
question
Computers and Technology, 24.06.2019 20:00
Write c++programs for the following problem: let the user enter two numbers and display which is greater. !
Answers: 1
You know the right answer?
PROGRAMMING LANGUAGE: C++ Q. No.1:

Deck of card contains 52 cards in total and catogris...
Questions
question
Mathematics, 26.10.2021 19:30
question
Mathematics, 26.10.2021 19:30
Questions on the website: 13722367