码迷,mamicode.com
首页 > 其他好文 > 详细

输入身份证号,得到生日

时间:2016-04-21 15:19:43      阅读:132      评论:0      收藏:0      [点我收藏+]

标签:

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);

 

输入身份证号,得到生日

标签:

原文地址:http://www.cnblogs.com/zzc134680/p/5416877.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!