Advertisement
Gudini

Homework1_3

Sep 21st, 2023
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.92 KB | Source Code | 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 Homework1_3
  8. {
  9.     class Program
  10.     {
  11.         static void Main(string[] args)
  12.         {
  13.             string age;
  14.             string name;
  15.             string zodiacSign;
  16.             string placeWork;
  17.  
  18.             Console.Write("Введите ваше имя: ");
  19.             name = Console.ReadLine();
  20.  
  21.             Console.Write("Сколько вам лет: ");
  22.             age = Console.ReadLine();
  23.  
  24.             Console.Write("Какой у вас знак зодиака: ");
  25.             zodiacSign = Console.ReadLine();
  26.  
  27.             Console.Write("Где вы работаете: ");
  28.             placeWork = Console.ReadLine();
  29.  
  30.             Console.WriteLine($"Вас зовут {name}, вам {age} год, вы {zodiacSign} и работаете {placeWork}.");
  31.         }
  32.     }
  33. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement