一个合法的身份证号码由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
现在给定一些身份证号码,请你验证校验码的有效性,并输出有问题的号码。
#include<iostream>
#include<vector>
#include<string>
using namespace std;
int main() {
int n,sum=0;
cin >> n;
string s;
bool mark = false;
int count = 0;
vector<int> v = { 7, 9, 10, 5, 8, 4, 2, 1, 6, 3, 7, 9, 10, 5, 8, 4, 2 };
string test = "10X98765432";
for (int i = 0;i < n;++i) {
cin >> s;
for (int i = 0;i < 17;++i)
if (s[i] > '9' || s[i] < '0') {
cout << s << endl;
++count;
mark = true;
break;
}
if (mark == true) {
mark = false;
continue;
}
else {
for (int i = 0;i < 17;++i) {
int t = s[i] - '0';
sum += t*v[i];
}
sum %= 11;
if (test[sum] != s[17]) {
cout << s << endl;
++count;
}
sum = 0;
}
}
if (count == 0) cout<<"All passed";
return 0;
}
灵活使用string和vector进行查询