一个合法的身份证号码由17位地区、日期编号和顺序编号加1位校验码组成。校验码的计算规则如下:

首先对前17位数字加权求和,权重分配为:{7,9,10,5,8,4,2,1,6,3,7,9,10,5,8,4,2};然后将计算的和对11取模得到值Z;最后按照以下关系对应Z值与校验码M的值:

  1. Z0 1 2 3 4 5 6 7 8 9 10
  2. M1 0 X 9 8 7 6 5 4 3 2

现在给定一些身份证号码,请你验证校验码的有效性,并输出有问题的号码。

输入格式:

输入第一行给出正整数N(≤100)是输入的身份证号码的个数。随后N行,每行给出1个18位身份证号码。

输出格式:

按照输入的顺序每行输出1个有问题的身份证号码。这里并不检验前17位是否合理,只检查前17位是否全为数字且最后1位校验码计算准确。如果所有号码都正常,则输出All passed

输入样例1:

  1. 4
  2. 320124198808240056
  3. 12010X198901011234
  4. 110108196711301866
  5. 37070419881216001X

输出样例1:

  1. 12010X198901011234
  2. 110108196711301866
  3. 37070419881216001X

输入样例2:

  1. 2
  2. 320124198808240056
  3. 110108196711301862

输出样例2:

  1. All passed

代码

  1. import java.util.Scanner;
  2. class Person{
  3. String ID;
  4. int sumWeight = 0;
  5. char check;
  6. boolean vaild = true;
  7. }
  8. public class Main {
  9. static int[] weight = {7, 9, 10, 5, 8, 4, 2, 1, 6, 3, 7, 9, 10, 5, 8, 4, 2};
  10. static char[] check = {'1', '0', 'X', '9', '8', '7', '6', '5', '4', '3', '2'};
  11. public static void main(String[] args) {
  12. int number;
  13. Scanner input = new Scanner(System.in);
  14. number = input.nextInt();
  15. /** Create some objects */
  16. Person[] person = new Person[number];
  17. for(int i = 0; i < number; i++) {
  18. person[i] = new Person();
  19. }
  20. /** Input the data */
  21. for(int i = 0; i < number; i++) {
  22. person[i].ID = input.next();
  23. }
  24. /** Is someone invaild before 18 bits? */
  25. for(int i = 0; i < number; i++) {
  26. for(int j = 0; j < 17; j++) {
  27. if(person[i].ID.charAt(j) >= '0' && person[i].ID.charAt(j) <= '9') {
  28. continue;
  29. }
  30. else {
  31. person[i].vaild = false;
  32. }
  33. }
  34. }
  35. /** Compte the weightID of vaild person */
  36. for(int i = 0; i < number; i++) {
  37. if(!person[i].vaild) {
  38. continue;
  39. }
  40. else {
  41. for(int j = 0; j < 17; j++) {
  42. person[i].sumWeight += (person[i].ID.charAt(j) - '0') * weight[j];
  43. }
  44. /* Find the check */
  45. person[i].check = check[person[i].sumWeight % 11];
  46. if(person[i].check == person[i].ID.charAt(17)) {
  47. person[i].vaild = true;
  48. }
  49. else {
  50. person[i].vaild = false;
  51. }
  52. }
  53. }
  54. /** Display the result */
  55. int counter = 0;
  56. for(int i = 0; i < number; i++) {
  57. if(person[i].vaild) {
  58. counter++;
  59. }
  60. }
  61. if(counter == number) {
  62. System.out.println("All passed");
  63. }
  64. for(int i = 0; i < number; i++) {
  65. if(!person[i].vaild) {
  66. System.out.println(person[i].ID);
  67. }
  68. }
  69. }
  70. }