From 023df550395e46d657df282dec0cde429268afcd Mon Sep 17 00:00:00 2001 From: ayushyadav01x-commits Date: Fri, 6 Feb 2026 17:54:04 +0530 Subject: [PATCH] Update README.md --- README.md | 21 +++++++++++++++++++-- 1 file changed, 19 insertions(+), 2 deletions(-) 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).