Created
February 6, 2025 14:02
-
-
Save KaslGame/bf6a9a17121dffc246110777939145a2 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
using System; | |
namespace Learn | |
{ | |
class Program | |
{ | |
static void Main(string[] args) | |
{ | |
Console.Write("Как вас зовут?: "); | |
string name = Console.ReadLine(); | |
Console.Write("Сколько вам лет?: "); | |
int age = Convert.ToInt32(Console.ReadLine()); | |
Console.Write("Ваш знак зодика?: "); | |
string zodiacSign = Console.ReadLine(); | |
Console.Write("Где вы работаете?: "); | |
string jobName = Console.ReadLine(); | |
Console.WriteLine($"Вас зовут {name}, вам {age}, вы {zodiacSign} и работаете на {jobName}."); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment