Created
February 7, 2025 07:13
-
-
Save kadan1/e6560bb29abac6b5778edf07ced2c4af to your computer and use it in GitHub Desktop.
0.2
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 Lastname = Console.ReadLine(); | |
Console.WriteLine("Как вас зовут?"); | |
string name = Console.ReadLine(); | |
Console.WriteLine("Сколько вам лет?"); | |
string age = Console.ReadLine(); | |
Console.WriteLine("Ваш знак задиака?"); | |
string zodiac = Console.ReadLine(); | |
Console.WriteLine("Где вы учитесь?"); | |
string study = Console.ReadLine(); ; | |
Console.WriteLine($"Вас зовут {Lastname} {name}, вам {age} лет, по знаку зодиака вы {zodiac}, а учитесь вы в {study}"); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment