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

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

筛选

strlen()不存在(C++代码)

摘要:解题思路:注意事项:strlen()这个函数虽然在string里也有,我用vs运行也没错,但是在这个网站编译器中需要包含的头文件是<cstring>参考代码:#include<iostream>#in……

电报加密简单版

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

[编程入门]电报加密-题解(C++代码)

摘要:1.如果字母是z ,就变成了a 2.如果是其他的字母,就直接变成后一个 3.如果不是字母,就保持不变 ```cpp #include using namespace std; in……

getline的使用

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

C语言 电报加密&

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>#define Long 80//允许输入字符串长度int main(){            v……