私は年齢を計算するために、あなたが依頼する必要があるので、これは奇妙な質問ですが、年齢C#の日付の年のマイナス誕生年
namespace howOldAreYou
{
class Program
{
public static void Main(string[] args)
{
//variables
int birthYear;
string name;
System.DateTime moment = new System.DateTime();
int year = moment.Year;
//int month = moment.Month;
//int day = moment.Day;
//int minute = moment.Minute;
//int second = moment.Second;
//int millisecond = moment.Millisecond;
//Find out person's name
Console.WriteLine("What is your name?");
name = Console.ReadLine();
//Find what year person was born
Console.WriteLine("What year were you born, " + name + "?");
if (int.TryParse(Console.ReadLine(), out birthYear))
{
Console.WriteLine(birthYear + "! Well you must be " + (year - birthYear));
}
else
{
Console.WriteLine("Sorry that's an invalid year");
}
}
}
}
誕生年だけの年齢は計算できません。あなたの実際の質問は何ですか? – TyCobb
あなたは1日も必要です。あなたは同じ生年があり、私とは異なる年齢になることができます。 – Dispersia
あなたは実際に質問していません。 – hatchet