Advertisement
bonumopus

Untitled

Apr 8th, 2020
182
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.96 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 firstproject
  8. {
  9.     class Program
  10.     {
  11.         static void Main(string[] args)
  12.         {
  13.             string name;
  14.             string age;
  15.             string zodiac;
  16.             string job;
  17.  
  18.             Console.WriteLine("Как вас зовут?");
  19.             name = Console.ReadLine();
  20.             Console.WriteLine("Сколько вам лет??");
  21.             age = Console.ReadLine();
  22.             Console.WriteLine("Кто вы по знаку зодиака?");
  23.             zodiac = Console.ReadLine();
  24.             Console.WriteLine("Где вы работаете?");
  25.             job = Console.ReadLine();
  26.  
  27.             Console.WriteLine($"Вас зовут {name}. Вам {age} лет. Вы {zodiac} по знаку зодика. Вы работаете на {job}.");
  28.             Console.ReadLine();
  29.         }
  30.     }
  31. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement