Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace ex_10
- {
- class Program
- {
- static void Main(string[] args)
- {
- Console.Write("Как тебя зовут? = ");
- string a = (Console.ReadLine());
- Console.Write("Сколько тебе лет? = ");
- double b = double.Parse(Console.ReadLine());
- Console.WriteLine(a + " ты родился(-ась) в " + (2009 - b) + " году.");
- Console.ReadKey();
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement