Created
February 7, 2025 06:46
-
-
Save MissEve1/e556c4b64acc596fcecd6260e4cb28e0 to your computer and use it in GitHub Desktop.
This file contains 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
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