diff --git a/README.md b/README.md index adac0bd..b25d4ef 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,20 @@ -# .NET website feedback +import random -This GitHub repository is for issues encountered on . \ No newline at end of file +score = 0 +print("🏏 Hand Cricket Game 🏏") +print("Choose a number from 1 to 6") + +while True: + player = int(input("Your number (1-6): ")) + computer = random.randint(1, 6) + + print("Computer chose:", computer) + + if player == computer: + print("OUT ❌") + print("Final Score:", score) + break + else: + score = score + player + print("Runs scored:", player) + print("Total Score:", score).