Created
June 19, 2017 18:38
-
-
Save senapk/40505aff5c4e07fe0c4b3b599008fe19 to your computer and use it in GitHub Desktop.
Imprimindo os nipes das cartas
This file contains hidden or 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; | |
const char * COPAS = "\xe2\x99\xa5"; | |
const char * OUROS = "\xe2\x99\xa6"; | |
const char * PAUS = "\xe2\x99\xa3"; | |
const char * ESPADAS = "\xe2\x99\xa0"; | |
int main(){ | |
cout << "Copas " << COPAS << endl; | |
cout << "Ouros " << OUROS << endl; | |
cout << "Paus " << PAUS << endl; | |
cout << "Espadas " << ESPADAS << endl; | |
return 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment