博客
关于我
PTA团队程序设计天梯赛 | L1-016 查验身份证 (15分)
阅读量:113 次
发布时间:2019-02-26

本文共 1092 字,大约阅读时间需要 3 分钟。

??????????

?????????????????????????????????????????17???????????????????

#include 
#include
#include
using namespace std;int q[17] = {7,9,10,5,8,4,2,1,6,3,7,9,10,5,8,4,2};char m[12] = "10X98765432";int main() { int n, i, flag = 0; char IdCard[19]; cin >> n; while (n--) { cin >> IdCard; flag = 0; for (i = 0; i < 17; i++) { if (!isdigit(IdCard[i])) { flag = 1; break; } } if (flag) { cout << IdCard; continue; } int sum = 0; for (i = 0; i < 17; i++) { sum += q[i] * (IdCard[i] - '0'); } int Z = sum % 11; if (Z < 0) Z += 11; if (m[Z] != IdCard[17]) { cout << IdCard; } } if (!flag) { cout << "All passed"; }}

?????????????????n???????????????????????????????????17?????????????????????????????????17????????????11????Z???????????????????????????????????????????

??????????????????"All passed"????????????????

转载地址:http://brcz.baihongyu.com/

你可能感兴趣的文章
ntp server 用法小结
查看>>
ntpdate 通过外网同步时间
查看>>
ntpdate同步配置文件调整详解
查看>>
NTPD使用/etc/ntp.conf配置时钟同步详解
查看>>
NTP及Chrony时间同步服务设置
查看>>
NTP服务器
查看>>
NTP配置
查看>>
NUC1077 Humble Numbers【数学计算+打表】
查看>>
NuGet Gallery 开源项目快速入门指南
查看>>
NuGet(微软.NET开发平台的软件包管理工具)在VisualStudio中的安装的使用
查看>>
nuget.org 无法加载源 https://api.nuget.org/v3/index.json 的服务索引
查看>>
Nuget~管理自己的包包
查看>>
NuGet学习笔记001---了解使用NuGet给net快速获取引用
查看>>
nullnullHuge Pages
查看>>
NullPointerException Cannot invoke setSkipOutputConversion(boolean) because functionToInvoke is null
查看>>
null可以转换成任意非基本类型(int/short/long/float/boolean/byte/double/char以外)
查看>>
Numix Core 开源项目教程
查看>>
numpy
查看>>
NumPy 库详细介绍-ChatGPT4o作答
查看>>
NumPy 或 Pandas:将数组类型保持为整数,同时具有 NaN 值
查看>>