输入身份证号,得到生日

Console.WriteLine("请输入你的身份证号码:");
string a = Console.ReadLine();
string year = a.Substring(6, 4);
string month = a.Substring(10, 2);
string day = a.Substring(12, 2);
Console.WriteLine("你的生日是{0}年{1}月{2}日", year, month, day);

 

posted @   五月十九  阅读(226)  评论(0编辑  收藏  举报
< 2025年1月 >
29 30 31 1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31 1
2 3 4 5 6 7 8
点击右上角即可分享
微信分享提示