Skip to content

Instantly share code, notes, and snippets.

@senapk
Created June 19, 2017 18:38
Show Gist options
  • Save senapk/40505aff5c4e07fe0c4b3b599008fe19 to your computer and use it in GitHub Desktop.
Save senapk/40505aff5c4e07fe0c4b3b599008fe19 to your computer and use it in GitHub Desktop.
Imprimindo os nipes das cartas
#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