void numberToCardTwo(int suit,int suit1, int value, int value1);
void numberToCard(int suit,int suit1, int value, int value1);
int outcome(int total, int summit, int q);
int main()
{
srand(time(NULL));
int suit, value;
cout<<"Hello, welcome to c++ blackjack! This game was created by Jake MacBrien, Taylor Burris and Dean Dawson." << endl;
cout<<endl;
cout<<" Directions: Blackjack is played using a standard deck of cards."<<endl;
cout<<"Get as close to 21 as possible without going over." <<endl;
cout<<"In this version of blackjack, your goal is to beat the house." <<endl;
cout<<"The house is the computer that is playing against you." <<endl;
cout<<"Every hand, the house will deal two cards each person." <<endl;
cout<<"You will only see one of the house's cards and the house will see one of yours." <<endl;
cout<<"You will then have two options; Hit or Stand." <<endl;
cout<<"If you hit, you will receive one more card from the deck to get closer to 21." <<endl;
cout<<"But, if you go over 21, you bust and automatically lose." <<endl;
cout<<"If you decide to stand, you will stay with your current two cards. " <<endl;
cout<<"The house will then decide if it wants to hit or stand in order to beat you. " <<endl;
cout<<"If both players have the same score it results in a push and neither player wins." << endl;