题解 1042: [编程入门]电报加密

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

筛选

很简单的字母移位

摘要:解题思路:根据字母与首字母的距离来判断如何移位。注意事项:没啥困难的参考代码:#include<iostream> using namespace std; int main(int argc, ……

1042: [编程入门]电报加密

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

C++代码String库函数

摘要:解题思路:注意事项:暂时不明参考代码:#include<iostream>#include<string>using namespace std;int main(){    string origi……

求解电报加密

摘要:解题思路:在定义字符的同时拿到该字符,写入死循环以便循环操作判断字符是否在范围内,若在,则输出字符的后一个把最后一个字符改成第一个字符以达到要求输出字符注意事项:在输出下一位时要用a+=1,再在最后输……

getline的使用

摘要:#include<bits/stdc++.h> using namespace std; int main() { char c[1000]; cin.getline(c,1000); ……