2943: Vigenère密码 摘要:解题思路:注意事项:参考代码:#include <stdlib.h> #include <stdio.h> #include <string.h> #include <iostream> us…… 题解列表 2024年09月07日 0 点赞 0 评论 78 浏览 评分:9.9
编写题解 2943: Vigenère密码 摘要:解题思路:输入-小写转换大写-密文转明文-大写转为小写输出注意事项:套用公式用于大写字母,输出时保留大小写,所以用f[i]标记小写字母;如果k密钥长度不够,用(i%k_len)求;公式:m[i]=c[…… 题解列表 2023年06月11日 0 点赞 1 评论 127 浏览 评分:0.0
哥们 看看我为啥运行错误 凑啊 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;string s ="abcdefghijklmnopqrstuvwxyz";cha…… 题解列表 2023年03月11日 0 点赞 0 评论 114 浏览 评分:0.0