Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- namespace CsharpCourse
- {
- internal class Program
- {
- static void Main(string[] args)
- {
- Console.WriteLine("Enter your birth year");
- string year = Console.ReadLine();
- int intYear = int.Parse(year);
- /*
- double d = double.Parse(year);
- float f = float.Parse(year);
- uint u = uint.Parse(year);
- ...
- */
- Console.WriteLine($"your age is { 2024 - intYear} ");
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement