[编程入门]密码破译-题解(Python代码) 摘要:解题思路:注意事项:Python参考代码:c1='C' c2='h' c3='i' c4='n' c5='a' …… 题解列表 2020年06月28日 0 点赞 0 评论 561 浏览 评分:0.0
[编程入门]密码破译-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:include<stdio.h>include<string.h>int main(void){ int n=0,m; char str[m]; sca…… 题解列表 2020年06月27日 0 点赞 0 评论 316 浏览 评分:0.0
[编程入门]密码破译-题解(Python语言代码) 摘要:这道题实际上是让你模拟一下通过ASCII码转换字母的规律 1、题干已经告诉你: 用赋初值的方法使cl、c2、c3、c4、c5五个变量的值分别为,’C’、’h’、’i’、’n’、’a’ …… 题解列表 2020年05月27日 0 点赞 0 评论 697 浏览 评分:0.0
[编程入门]密码破译-题解(C语言代码)sky 摘要:```c #include #include int main(){ // ASCII的问题转两下 char str[100]; gets(str); …… 题解列表 2020年05月18日 0 点赞 0 评论 615 浏览 评分: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 评论 262 浏览 评分:0.0
[编程入门]密码破译-题解(Java代码)sky 摘要:```java import java.util.Scanner; public class Main { public static void main(String[] args) {…… 题解列表 2020年05月14日 0 点赞 0 评论 1662 浏览 评分:9.1
[编程入门]密码破译-题解(C语言代码) 摘要: #include int main() { char c[] = "China"; //字符串 char* pc = c; //定义一…… 题解列表 2020年05月13日 0 点赞 0 评论 702 浏览 评分:0.0
[编程入门]密码破译-题解(C语言代码) 摘要:#### 方案1 ```c #include int main(void) { char c1, c2, c3, c4, c5; scanf("%c", &c1); …… 题解列表 2020年04月26日 0 点赞 0 评论 559 浏览 评分:0.0
[编程入门]密码破译-题解(C++代码) 摘要:```cpp #include using namespace std; int main() { string str; string outputstr; while(cin>…… 题解列表 2020年04月10日 0 点赞 0 评论 435 浏览 评分:8.0
[编程入门]密码破译-题解(C++代码) 摘要:属于暴力破解吧 ``` #include using namespace std; int main(void) { char c[6]={"China"};// for(int i…… 题解列表 2020年04月07日 0 点赞 0 评论 1135 浏览 评分:9.2