Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- [StartCode]
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace ConsoleApp9
- {
- internal class Program
- {
- static void Main(string[] args)
- {
- int age;
- string userName;
- string zodiacSign;
- string placeOfWork;
- Console.Write("Назовитесь : ");
- userName = Console.ReadLine();
- Console.Write("Укажите ваш знак зодиака : ");
- zodiacSign = Console.ReadLine();
- Console.Write("Укажите ваш возраст : ");
- age = Convert.ToInt32(Console.ReadLine());
- Console.Write("Укажите место работы : ");
- placeOfWork = Console.ReadLine();
- Console.WriteLine($"Здраствуйте {userName} , вам {age} лет , вы {zodiacSign} по гороскопу , а работаете вы на {placeOfWork}.");
- }
- }
- }
- [EndCode]
Advertisement
Add Comment
Please, Sign In to add comment