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

1031. 查验身份证(15)

时间:2016-12-15 18:05:33      阅读:229      评论:0      收藏:0      [点我收藏+]

标签:日期   格式   输出   std   cto   blog   号码   content   cin   

1031. 查验身份证(15)

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

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

Z:0 1 2 3 4 5 6 7 8 9 10
M:1 0 X 9 8 7 6 5 4 3 2

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

输入格式:

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

输出格式:

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

输入样例1:
4
320124198808240056
12010X198901011234
110108196711301866
37070419881216001X
输出样例1:
12010X198901011234
110108196711301866
37070419881216001X
输入样例2:
2
320124198808240056
110108196711301862
输出样例2:
All passed
 1 #include<iostream>  
 2 #include<string>  
 3 #include<vector>  
 4 using namespace std;  
 5 int main(){  
 6     for(int n;cin>>n;){  
 7         int arr[17]={7,9,10,5,8,4,2,1,6,3,7,9,10,5,8,4,2};  
 8         char match[11]={1,0,X,9 ,8,7,6,5,4,3,2};  
 9         int all_pass = 1;  
10         for(int i =0;i < n;i++){  
11             int flag = 1;  
12             string str;  
13             int sum = 0;  
14             cin>>str;  
15             for(int j = 0;j < str.length()-1;j++){  
16                 if(str[j] >= 0 && str[j] <= 9){  
17                     sum+= arr[j]*(str[j] - 0);  
18                 }else{  
19                     flag = 0;  
20                     break;  
21                 }  
22             }  
23             if(match[sum%11] != str[str.length()-1]){  
24                 flag = 0;  
25             }  
26             if(!flag){  
27                 all_pass = 0;  
28                 cout<<str<<endl;  
29             }  
30         }  
31         if(all_pass){  
32             cout<<"All passed"<<endl;  
33         }  
34     }  
35     return 0;  
36 }  

 

1031. 查验身份证(15)

标签:日期   格式   输出   std   cto   blog   号码   content   cin   

原文地址:http://www.cnblogs.com/cqxhl/p/6183940.html

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