lovelyvook

Unit_02

Mar 30th, 2024
717
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.78 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 Ijunior
  8. {
  9.     internal class Program
  10.     {
  11.         static void Main(string[] args)
  12.         {
  13.             string name;
  14.             int age;
  15.             string color;
  16.  
  17.             Console.Write("Введите ваше имя: ");
  18.             name = Console.ReadLine();
  19.             Console.Write("Введите ваш возраст: ");
  20.             age = Convert.ToInt32(Console.ReadLine());
  21.             Console.Write("Введите ваш любимый цвет: ");
  22.             color = Console.ReadLine();
  23.  
  24.             Console.WriteLine($"Вас зовут {name}, вам {age}, ваш любимый цвет {color}");
  25.         }
  26.     }
  27. }
Advertisement
Add Comment
Please, Sign In to add comment