using System;
class date{
public static void Main() {
Console.WriteLine(DateTime.Now);
// 2011/11/30 9:22:35
Console.WriteLine(DateTime.Today);
// 2011/11/30 0:00:00
DateTime dt = DateTime.Now;
Console.WriteLine(dt.Year + "年"); // 2011年 Console.WriteLine(dt.Month + "月"); // 11月
Console.WriteLine(dt.Day + "日"); // 30日
Console.WriteLine(dt.Hour + "時"); // 9時
Console.WriteLine(dt.Minute + "分"); // 22分
Console.WriteLine(dt.Second + "秒"); // 35秒
Console.WriteLine(dt.ToString("F"));
// 2011年11月30日 9:22:35
Console.WriteLine(dt.ToString("yyyy年MM月dd日 HH時mm分ss秒"));
2011年11月30日 09時22分35秒
}
}
More than 5 years have passed since last update.
Register as a new user and use Qiita more conveniently
- You get articles that match your needs
- You can efficiently read back useful information
- You can use dark theme