using System;
namespace MyApplication
{
class Program
public static void Main(string[] args)
Console.WriteLine("Введите имя:");
string name = Console.ReadLine();
Console.WriteLine("Введите фамилию:");
string surname = Console.ReadLine();
Console.WriteLine("Введите возраст:");
int age = Convert.ToInt32(Console.ReadLine());
int endage = 60 - age;
Console.WriteLine("Привет, " + name + " " + surname + "! До пенсии осталось " + endage + " года.");
}
Random random = new Random();
int rndValue = random.Next(1, 101);
int userValue;
Console.WriteLine("Попробуйте угадать число");
do
userValue = Convert.ToInt32(Console.ReadLine());
if (userValue == rndValue)
Console.WriteLine("Ура! Вы угадали число");
break;
Console.WriteLine("Неудача, попробуйте ещё раз.");
} while (true);
using System;
namespace MyApplication
{
class Program
{
public static void Main(string[] args)
{
Console.WriteLine("Введите имя:");
string name = Console.ReadLine();
Console.WriteLine("Введите фамилию:");
string surname = Console.ReadLine();
Console.WriteLine("Введите возраст:");
int age = Convert.ToInt32(Console.ReadLine());
int endage = 60 - age;
Console.WriteLine("Привет, " + name + " " + surname + "! До пенсии осталось " + endage + " года.");
}
}
}
using System;
namespace MyApplication
{
class Program
{
public static void Main(string[] args)
{
Random random = new Random();
int rndValue = random.Next(1, 101);
int userValue;
Console.WriteLine("Попробуйте угадать число");
do
{
userValue = Convert.ToInt32(Console.ReadLine());
if (userValue == rndValue)
{
Console.WriteLine("Ура! Вы угадали число");
break;
}
Console.WriteLine("Неудача, попробуйте ещё раз.");
} while (true);
}
}
}