kwest87

Untitled

Mar 18th, 2022
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.03 KB | None | 0 0
  1. [StartCode]
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7.  
  8. namespace ConsoleApp9
  9. {
  10.     internal class Program
  11.     {
  12.         static void Main(string[] args)
  13.         {
  14.             int age;
  15.             string userName;
  16.             string zodiacSign;
  17.             string placeOfWork;
  18.  
  19.             Console.Write("Назовитесь : ");
  20.             userName = Console.ReadLine();
  21.             Console.Write("Укажите ваш знак зодиака : ");
  22.             zodiacSign = Console.ReadLine();
  23.             Console.Write("Укажите ваш возраст : ");
  24.             age = Convert.ToInt32(Console.ReadLine());
  25.             Console.Write("Укажите место работы : ");
  26.             placeOfWork = Console.ReadLine();
  27.  
  28.             Console.WriteLine($"Здраствуйте {userName} , вам {age} лет , вы {zodiacSign} по гороскопу , а работаете вы на {placeOfWork}.");
  29.         }
  30.     }
  31. }
  32. [EndCode]
  33.  
Advertisement
Add Comment
Please, Sign In to add comment