C#控制台实现身份证号码年月日即性别的截取

用到了强制转换、字符串截取、三目运算判断男女~
补充小知识点:身份证号码的倒数第二位奇数为男,偶数为女。

using System;

namespace Demo1
{
    class Program
    {
        static void Main(string[] args)
        {
            string people = Console.ReadLine();
            int sex = int.Parse(people.Substring(15,1));
            Console.WriteLine("{0}年{1}月{2}日 性别{3}", people.Substring(6, 4), people.Substring(10, 2), people.Substring(12, 2), sex == 1 ? "男": "女");
            Console.ReadKey();
        }
    }
}

小剧场:要做大事,却没有随时想奉献自己全部的人,是一文不值的人。

你可能感兴趣的:(C#控制台实现身份证号码年月日即性别的截取)