Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
zmx0142857
GitHub Repository: zmx0142857/mini-games
Path: blob/master/c/poker/test.cpp
363 views
1
#include "poker.h"
2
using namespace std;
3
4
int main()
5
{
6
// Card::test();
7
// Deck::test();
8
int i;
9
while (cin >> i)
10
wcout << Card(i) << '\n';
11
return 0;
12
}
13
14