Advertisement
Guest User

Untitled

a guest
Jan 14th, 2020
135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.62 KB | None | 0 0
  1.  
  2.             Console.Write("Введите ваше имя ");
  3.             string name = Console.ReadLine();
  4.             Console.Write("Введите ваш ваозраст ");
  5.             int age = Convert.ToInt32(Console.ReadLine());
  6.             Console.Write("Введите ваш знак зодиака ");
  7.             string zodiac = Console.ReadLine();
  8.             Console.Write("Введите кем вы работаете ");
  9.             string work = Console.ReadLine();
  10.             Console.WriteLine($"Вас зовут {name}, Ваш взраст {age} лет, вы {zodiac}, вы работаете {work}");
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement