Last active
May 19, 2025 20:06
-
-
Save LevShab/574bdabe7353073127ee to your computer and use it in GitHub Desktop.
Game
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
using System.Threading.Tasks; | |
namespace Game | |
{ | |
class Program | |
{ | |
static void Main(string[] args) | |
{ | |
int round = 0; | |
int score = 0; | |
int random; | |
Console.WriteLine("Я хочу сыграть с тобой в одну игру, отгодай число от 0 до 100"); | |
while(round != 10){ | |
Random random_nenuzon = new Random(DateTime.Now.Millisecond); | |
random = random_nenuzon.Next(101); // Если хотим от 1 до 100 пишем в скобках - 1, 101 | |
Console.WriteLine("Введи число"); | |
int answer = Convert.ToInt32(Console.ReadLine()); | |
if (answer == random) { | |
Console.WriteLine("Вы выйграли"); | |
score++; //Это тоже самое что и score = score + 1 | |
}else{ | |
Console.WriteLine("Вы не выйграли"); | |
} | |
round++; | |
Console.Write("Ваш счет на данный момент равен "); | |
Console.WriteLine(score); | |
Console.Write("Вы сыграли "); | |
Console.Write(round); | |
Console.WriteLine(" раундов из 10"); | |
} | |
Console.Write("Вы сыграли со счетом "); | |
Console.Write(score); | |
Console.WriteLine(" баллов из 10"); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks for the information.
reading apps for adults