New Ascii Art And How to Do Make It

This is A Cool Text To Ascii Art Compiler:

Got Some Bulls And Cow Game Ascii Art on Internet

In The Website I like Using Doom Font

And To put it in cout in ur program




etc…

You Copy Little Strips Of It 1 By 1 into ur cout and for back slashes make it double slashes

This is My Ascii Art:

And You Can Clear the Screen Everytime It Starts a New Game So At The Beginning of Your PrintInto Function Write system.(“CLS”) if it doesnt work use the clear command on ur current Operating System

My Code:

Note You Can Optimize it As You Wish

Code:

void PrintIntro() 
{
	system("CLS");
	std::cout << std::endl;
	std::cout << "          }   {         ___ " << std::endl;
	std::cout << "          (o o)        (o o) " << std::endl;
	std::cout << "   /-------\\ /          \\ /-------\\ " << std::endl;
	std::cout << "  / | BULL |O            O| COW  | \\ " << std::endl;
	std::cout << " *  |-,--- |              |------|  * " << std::endl;
	std::cout << "    ^      ^              ^      ^ " << std::endl;
	std::cout << "______       _ _        ___            _   _____                   " << std::endl;
	std::cout << "| ___ \\     | | |      / _ \\          | | /  __ \\		\t Made By Shaheer Tura" << std::endl;
	std::cout << "| |_/ /_   _| | |___  / /_\\ \\_ __   __| | | /  \\/ _____      _____ " << std::endl;
	std::cout << "| ___ \\ | | | | / __| |  _  | '_ \\ / _` | | |    / _ \\ \\ /\\ / / __|" << std::endl;
	std::cout << "| |_/ / |_| | | \\__ \\ | | | | | | | (_| | | \\__/\\ (_) \\ V  V /\\__ \\" << std::endl;
	std::cout << "\\____/ \\__,_|_|_|___/ \\_| |_/_| |_|\\__,_|  \\____/\\___/ \\_/\\_/ |___/" << std::endl;
	std::cout << "\nWelcome to Bulls and Cows, a fun word game.\n";
	std::cout << "Can You Guess the " << BCGame.GetHiddenWordLength();
	std::cout << " letter Isogram I'm Thinking of?\n";
	std::cout << std::endl;


	return;
}

ScreenShot:

Thank You For Your Time

Bye :wave:

Privacy & Terms