题解 1916: 蓝桥杯算法提高VIP-身份证号码升级

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

c++++++++++++++++++++++++

摘要:解题思路:注意事项:参考代码:#include<iostream>#include<string>using namespace std;int main(){ string ……

java-substring方法的使用

摘要:解题思路 步骤一:字符串截取和拼接,使用substring方法 步骤二:使用两个数组保存系数和对应的字符,求的和除以11取余数,余数为对应字符的下标,具体步骤看代码! import ja……

1916: 蓝桥杯算法提高VIP-身份证号码升级

摘要:解题思路:定义一个字符串,利用循环把第七位(下标6)以上的向后移两位,然后把1和9赋值进去,再用个for循环把和sum求出来,对11进行求余,作为a的下标,赋值给str最后一个值。输出注意事项:str……

不难,但有点繁琐

摘要:#include<bits/stdc++.h> using namespace std; int main() { char c[20]; cin>>c; int sum=0; ……

身份证号码升级-题解(C++代码)

摘要:解题思路:字符串注意事项:字符串和数字的转换参考代码:#include <iostream> #include <cstring> using namespace std; char s1[20……

省份证号升级

摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <iostream>#include <string.h>using namespace std;int main(……