题解 1003: [编程入门]密码破译

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

筛选

c语言for简单循环

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){    char a[5];    int i;    for (i = 0;i<5;i++)    {     ……

密码破译(c语言)

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){    char str[5];    int i;    scanf("%s",str);    for(i=0……

新手试了试,大佬们看看

摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){    int i,sz; char arr[20]={0}; gets(arr); sz = sizeof(a……

1003密码破译

摘要:解题思路:字符+4操作/*要将"China"译成密码,译码规律是:用原来字母后面的第4个字母代替原来的字母.例如,字母"A"后面第4个字母是"E"."E"代替"A"。因此,"China"应译为"Glm……

1003c语言代码

摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ char c1,c2,c3,c4,c5; scanf("%c%c%c%c%c",&c1,&c2,&c3,&c4……

[编程入门]密码破译

摘要:解题思路:自己看注意事项:参考代码:#include <stdio.h>void encryptPassword(char* str) {    int i = 0;    while (str[i]……

[编程入门]密码破译

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){    char c1,c2,c3,c4,c5;    scanf("%c%c%c%c%c",&c1,&c2,&c……

c语言代码解决问题

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){    char str[1001];    gets(str);    st……