ahmed0saber

Age Calculator in C#

Nov 21st, 2020
42
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.25 KB | None | 0 0
  1. using System;
  2. namespace AgeCalculator
  3. {
  4. class Project1
  5. {
  6. void Main()
  7. {
  8. int year_of_birth;
  9. Console.Write("Enter your birth year : ");
  10. year_of_birth=Convert.ToInt32(Console.ReadLine());
  11. Console.Write("Your age is {0}",(2020-year_of_birth));
  12. }
  13. }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment