题解 1162: 密码

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

筛选

【密码】 (C++代码)

摘要:解题思路:简单模拟注意事项:参考代码:#include<bits/stdc++.h> using namespace std; char a[52]; int main() { int c……

密码(c语言)

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){    int n,i,s[200];    scanf("%d",&n); ……

【密码】-题解(C语言代码)

摘要:#include #include #include #include int main() { int a,c,d,sum,x,s[4]; //s数组用来记录特殊字符出现的次数 ……

【密码】 (C语言代码)利用转移表

摘要:解题思路:1. 只能包含四种数据,那就需要对应四组数据的检查函数,前三个有库函数,只需要写一个最后的特殊字符检查。2. 由于四中符号的检查过程相同,可以利用转移表简化代码。注意事项:转移表的定义与使用……

【密码】 (C语言代码)

摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <string.h>int main(void){ int i, j, n, count, length; char……

密码(C语言)

摘要:解题思路:注意事项:比较简单,没什么好主意的参考代码:#include<stdio.h>#include<string.h>#include <ctype.h>#include<math.h>int ……