Skip to content

Instantly share code, notes, and snippets.

@LevShab
Last active May 19, 2025 20:06
Show Gist options
  • Select an option

  • Save LevShab/574bdabe7353073127ee to your computer and use it in GitHub Desktop.

Select an option

Save LevShab/574bdabe7353073127ee to your computer and use it in GitHub Desktop.
Game
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");
}
}
}
@ThorneAlaric288
Copy link
Copy Markdown

Thanks for the information.

reading apps for adults

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment