Skip to content

Instantly share code, notes, and snippets.

@MissEve1
Created February 7, 2025 06:46
Show Gist options
  • Save MissEve1/e556c4b64acc596fcecd6260e4cb28e0 to your computer and use it in GitHub Desktop.
Save MissEve1/e556c4b64acc596fcecd6260e4cb28e0 to your computer and use it in GitHub Desktop.
namespace ConsoleApp1
{
internal class Program
{
static void Main(string[] args)
{
Console.WriteLine("Как вас зовут?");
string name = Console.ReadLine();
Console.WriteLine("Сколько вам лет?");
string age = Console.ReadLine();
Console.WriteLine("Какой у вас знак зодиака?");
string sign = Console.ReadLine();
Console.WriteLine("Какой у вас тип личности?");
string tipe = Console.ReadLine();
Console.WriteLine($"Вас зовут {name}, вам {age} лет, ваш знак зодиака {sign}, а ваш тип личности {tipe}.");
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment