使用C#写了一个可以推算火车票身份证号码的小程序
程序员文章站
2022-05-26 10:48:56
1. 火车票上*号打的是月,日,理论上的有最大366种组合;
2. 校验码是最后的一位,0-9及x,11个结果;
3. 那么,通过火车票上的身份证号,可以得到3...
1. 火车票上*号打的是月,日,理论上的有最大366种组合;
2. 校验码是最后的一位,0-9及x,11个结果;
3. 那么,通过火车票上的身份证号,可以得到33个左右真正的有效身份证号;
4. 如果你能知道对方的星座(嗯,大家不是经常曝自己是什么星座么),那么,再将这30多个结果映射到12个星座中,最终可能性只有2-3个。。。
5. 结论:晒车票,一定要打码
using system; using system.collections.generic; using system.linq; using system.text; namespace geyunfei.checkid { class program { static int[] a = new int[] { 7, 9, 10, 5, 8, 4, 2, 1, 6, 3, 7, 9, 10, 5, 8, 4, 2 }; static char[] b = new char[] { '1', '0', 'x', '9', '8', '7', '6', '5', '4', '3', '2' }; static int index = 0; static void main(string[] args) { system.console.writeline("输入火车票上的身份证号:"); string a = system.console.readline(); var year = int.parse(a.substring(6, 4)); var begindate = new datetime(year, 1, 1); var chk = a.substring(14); int days = 365; if (datetime.isleapyear(year)) days++; for(int i =0;i<days; i++) { var chkdate = begindate.adddays(i).tostring("mmdd"); var id = a.substring(0, 10) + chkdate + chk; checkid(id); } } private static void checkid(string id) { int sum = 0; for(int i = 0; i < 17; i++) { sum += int.parse(id[i].tostring()) * a[i]; } var chk = b[sum % 11]; if (chk == id[17]) { index++; console.writeline(getastro(int.parse(id.substring(10,2)),int.parse(id.substring(12,2)))+ index.tostring() +" "+id); } } private static string getastro(int month, int day) { string[] stararr = {"魔羯座","水瓶座", "双鱼座", "牡羊座", "金牛座", "双子座", "巨蟹座", "狮子座", "处女座", "天秤座", "天蝎座", "射手座" }; int[] dayarr = { 22, 20, 19, 21, 21, 21, 22, 23, 23, 23, 23, 22 }; // 两个星座分割日 int index = month; // 所查询日期在分割日之前,索引-1,否则不变 if (day < dayarr[month - 1]) { index = index - 1; } index = index % 12; // 返回索引指向的星座string return stararr[index]; } } }
上一篇: 如何美容养颜,爱美的你知道吗