もう1つの初心者の質問です。ユーザーの年齢をとり、それを現在の日付から減算してユーザーに表示する年齢の計算を作成しようとしています。 私は基本的な考え方を持っています。ここで は私のサンプルコードです:時間、日、年の年齢を示す年齢計算ツールを作成するにはどうすればよいですか?
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Age_Calculator
{
class Program
{
static void Main(string[] args)
{
DateTime Current = DateTime.Now;
Console.WriteLine("Please enter your birth date: ");
string myBirthDate = Console.ReadLine();
//ive got the date from the user, now how do i subtract the current date from the date of birth?
string myAge = //here the result is stored
//then displayed as hours
//then displayed as days
//finally as years
//will use replacement code i think
Console.WriteLine(myAge);
//Ive got the idea but due to lack of knowledge i cant make this application
}
}
}
今日の日付を取ると生年月日を引く、それはあなたがあなたから必要な情報を取得するために使用できるTimeSpanオブジェクトを与える必要があります。 – Jite