Created
December 19, 2021 20:19
-
-
Save Sarverott/ccee32daaeb22716fc048bff61875229 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
using namespace std; | |
void blankCard(char team, char sign){ | |
//void blankCard(){ | |
cout | |
<<(char)218 | |
<<(char)196 | |
<<(char)196 | |
<<(char)191 | |
<<"\n" | |
<<(char)179 | |
<<team | |
<<sign | |
<<(char)179 | |
<<"\n" | |
<<(char)192 | |
<<(char)196 | |
<<(char)196 | |
<<(char)217 | |
<<"\n"; | |
} | |
char hearts=(char)3; | |
char spades=(char)6; | |
char diamonds=(char)4; | |
char clubs=(char)5; | |
int main() | |
{ | |
blankCard(hearts, 'K'); | |
blankCard(spades, 'A'); | |
blankCard(diamonds, '9'); | |
blankCard(clubs, '2'); | |
return 0; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
┌──┐ | |
│♥K│ | |
└──┘ | |
┌──┐ | |
│♠A│ | |
└──┘ | |
┌──┐ | |
│♦9│ | |
└──┘ | |
┌──┐ | |
│♣2│ | |
└──┘ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment