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

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

筛选

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

摘要:解题思路:谢邀,这道入门难住我了注意事项:参考代码:#include<iostream>#include<string>using namespace std;int main(){ int i; c……

密码编译c++新手版

摘要:解题思路:注意事项:用了小循环,可以输入多组数据参考代码:#include <iostream>using namespace std;int main () {    char a[10];    ……

"密码破译"题解

摘要:解题思路:把China译成密码,首先定义一个长度为5的字符数组,然后利用循环将每一个字符都加上4,最后用循环打印数组即可注意事项:在给每一个元素+4时要注意:不是+,而应用+=(x+=1,就是x=x+……

[编程入门]密码破译有惊喜

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){    cout <<"Glmre";    return 0……

for的引用破解密码

摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){    string s;    cin>>s;    for(auto……