1a1b Number Guessing Game

Project Description

A C++ implementation of the classic 1A1B (Bulls and Cows) number guessing game. The program generates a random 4-digit number and players try to guess it. After each guess, the program provides feedback in the form of 'A's (correct digit in correct position) and 'B's (correct digit in wrong position).

The game features input validation to ensure proper 4-digit numbers, a scoring system based on the number of attempts, and an option to reveal the answer if stuck. It's a great way to practice logical thinking and deduction skills while having fun.