// ConsoleApplication1.cpp : Defines the entry point for the console application.
//
#include “stdafx.h”
#include
#include
using namespace std;
int main()
{
//Introduce the game
constexpr int Word_Count = 4;
cout << “Welcome to Bulls and Cows” << endl;
cout << “Can you guess the " << Word_Count << " letter isogram I’m thinking of?\n”;
cout << "type in your guess here: ";
//Get a guess from user
string wtf ;
cin >>wtf;
//Result reveal
string nonono = ("Try again");
cout<< "Your Guess was "<< wtf << ", wrong,"<< nonono <<"\n";
//Try again
cin >> wtf;
cout << "Your Guess was " << wtf << ", wrong," << nonono << "\n";
return 0;
}