[编程入门]密码破译-题解(C语言代码)sky 摘要:```c #include #include int main(){ // ASCII的问题转两下 char str[100]; gets(str); …… 题解列表 2020年05月18日 0 点赞 0 评论 507 浏览 评分:0.0
[编程入门]密码破译-题解(C语言代码) 摘要:建立五个char变量即可。 ```c # include int main() { char c1, c2, c3, c4, c5; scanf("%c%c%c%c%c", &c…… 题解列表 2020年05月15日 0 点赞 0 评论 191 浏览 评分:0.0
[编程入门]密码破译-题解(Java代码)sky 摘要:```java import java.util.Scanner; public class Main { public static void main(String[] args) {…… 题解列表 2020年05月14日 0 点赞 0 评论 1535 浏览 评分:9.1
[编程入门]密码破译-题解(C语言代码) 摘要: #include int main() { char c[] = "China"; //字符串 char* pc = c; //定义一…… 题解列表 2020年05月13日 0 点赞 0 评论 497 浏览 评分:0.0
[编程入门]密码破译-题解(C语言代码) 摘要:#### 方案1 ```c #include int main(void) { char c1, c2, c3, c4, c5; scanf("%c", &c1); …… 题解列表 2020年04月26日 0 点赞 0 评论 434 浏览 评分:0.0
[编程入门]密码破译-题解(C++代码) 摘要:```cpp #include using namespace std; int main() { string str; string outputstr; while(cin>…… 题解列表 2020年04月10日 0 点赞 0 评论 331 浏览 评分:8.0
[编程入门]密码破译-题解(C++代码) 摘要:属于暴力破解吧 ``` #include using namespace std; int main(void) { char c[6]={"China"};// for(int i…… 题解列表 2020年04月07日 0 点赞 0 评论 1003 浏览 评分:9.2
优质题解 [编程入门]密码破译-题解(Python代码) 摘要:# 题目 将 "China" 译成密码,译码规律是:用原来字母后面的第 4 个字母代替原来的字母. 例如,字母 "A" 后面第 4 个字母是 "E"."E" 代替 "A"。因此,"China"…… 题解列表 2020年04月06日 0 点赞 0 评论 2369 浏览 评分:9.2
[编程入门]密码破译-题解(C语言代码) 摘要:#include int main(int argc,char const *argv[]) { char c[5]; int i; for(i=0;i…… 题解列表 2020年03月27日 0 点赞 0 评论 315 浏览 评分:0.0
优质题解 [编程入门]密码破译-题解(C语言代码)(本答案可测试任意长度字符串) 摘要:####1. 注意点 1.字符输入和字符输出; 2.用原来字母后面的第4个字母代替原来的字母,可直接对字符进行加4操作。 ####2. 解题思路 1.本题只有一组测试数据,故输入长度…… 题解列表 2020年02月28日 0 点赞 0 评论 2453 浏览 评分:8.5