15 lines
160 B
C++
15 lines
160 B
C++
|
#include <iostream>
|
||
|
#include "Date.hpp"
|
||
|
#include "Blackjack.hpp"
|
||
|
|
||
|
using namespace std;
|
||
|
|
||
|
int main()
|
||
|
{
|
||
|
exercise_1();
|
||
|
exercise_2();
|
||
|
exercise_5();
|
||
|
|
||
|
return 0;
|
||
|
}
|