Advertisement
Sephinroth

prac 1 ex 10

Sep 15th, 2019
213
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.56 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5.  
  6. namespace ex_10
  7. {
  8.     class Program
  9.     {
  10.         static void Main(string[] args)
  11.         {
  12.             Console.Write("Как тебя зовут? = ");
  13.             string a = (Console.ReadLine());
  14.             Console.Write("Сколько тебе лет? = ");
  15.             double b = double.Parse(Console.ReadLine());
  16.             Console.WriteLine(a + " ты родился(-ась) в " + (2009 - b) + " году.");
  17.             Console.ReadKey();
  18.         }
  19.     }
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement