您好我想在c#中制作一个控制台程序,用户输入他/她的出生日期,该程序应该返回他/她当前的年龄......
我是初学者,真的不知道这样做......
答案 0 :(得分:-1)
Console.WriteLine("Please type your date of birth");
var DOB = Console.ReadLine();
Console.WriteLine("take the age calculation from the duplicate question");
Console.ReadLine();