Advertisement
vovanhik_24

#3

Aug 18th, 2023
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.63 KB | None | 0 0
  1.         static void Main(string[] args)
  2.         {
  3.             Console.Write("Ваше имя: ");
  4.             string name = Console.ReadLine();
  5.  
  6.             Console.Write("Ваш возраст: ");
  7.             int age = Convert.ToInt32(Console.ReadLine());
  8.  
  9.             Console.Write("Ваш знак зодиака: ");
  10.             string zodiacSign = Console.ReadLine();
  11.  
  12.             Console.Write("Ваша место работы: ");
  13.             string work = Console.ReadLine();
  14.  
  15.             Console.WriteLine($"Вас зовут {name}, вам {age} год, вы {zodiacSign} и работаете на {work}");
  16.         }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement