Code:
#include <iostream>
#include <stdlib.h>
#include <time.h>

using namespace std;

int main(){
 
  string gamemode,pacanele="Pacanele",blackjack="Blackjack";
    float i=0,credit=100,c1=0,a;
    cout<<"Bun venit la cazino!"<<endl;
	cout<<"Alege un mod de joc:"<<pacanele<<endl;
	cout<<blackjack;cin>>gamemode;
...