Advertisement
TargeTPoweR

Untitled

Mar 17th, 2020
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.92 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6.  
  7. namespace tasks
  8. {
  9. class Program
  10. {
  11. static void Main(string[] args)
  12. {
  13. string name;
  14. int age;
  15. string zodiac;
  16. string work;
  17. Console.WriteLine("Как вас зовут?");
  18. name = Console.ReadLine();
  19. Console.WriteLine("Сколько вам лет?");
  20. age = Convert.ToInt32 (Console.ReadLine());
  21. Console.WriteLine("Кто вы по знаку зодиака?");
  22. zodiac = Console.ReadLine();
  23. Console.WriteLine("Где вы батрачите?");
  24. work = Console.ReadLine();
  25. Console.WriteLine($"Вас зовут {name}, вам {age} лет, вы {zodiac} и вы батрачите на(в) {work}");
  26.  
  27.  
  28. }
  29. }
  30. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement