Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- namespace ConsoleApp3
- {
- internal class Program
- {
- static void Main(string[] args)
- {
- string name;
- int age;
- string sity;
- string color;
- Console.Write("Как вас зовут?: ");
- name = Console.ReadLine();
- Console.Write("Сколько вам лет?: ");
- age = Convert.ToInt32(Console.ReadLine());
- Console.Write("Из какого вы города?: ");
- sity = Console.ReadLine();
- Console.Write("Какой ваш любимый цвет?: ");
- color = Console.ReadLine();
- Console.WriteLine($"Вас зовут {name}, вам {age} лет, вы из города {sity} и ваш любимый цвет - {color}");
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement