I Have Created The Intro And Guess For Bulls And Cows.
Her’s My Code
#include
#include
using namespace std;
int main()
{
constexpr int WORD_LENGTH = 9;
// Introduce the program
cout << "Welcome To Bulls and Cows, a fun word game/n"
<< "Can you guess the " << WORD_LENGTH
<< " letter isogram I'm thinking off?\n";
// Ask User For A Guess and repeat the guess
string Guess = "";
cout << "Enter your guess:-";
cin >> Guess;
cout << "\nYour guess was:-" << Guess << '\n';
return 0;
}