摘要: Vigenère密码 字符串的一个模拟,核心在于判断大小写(?) #include<bits/stdc++.h> using namespace std; char k[10002],m[10002]; int main() { gets(k); gets(m); int l1=strlen(k); 阅读全文
posted @ 2020-04-05 20:35 mgtnb 阅读(136) 评论(0) 推荐(0) 编辑