[编程入门]电报加密
摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ string s; getline(cin,s)……
电报加密代码简单粗暴
摘要:解题思路:用for循环游历数组用if语句找到a~Z,由于z和Z不能直接加1变成a所以我们吧判断写成arr[i]>='a'&&arr[i]<'z',和arr[i]>=&#……
电报加密(无需过多解释----自定义)
摘要:解题思路:注意事项:参考代码:#include<stdio.h>char plus(char k[]){ int i=0; while(k[i]!='\0') { ……
简单 初学 即 懂!
摘要:```c
#include
#include
int main(){
char arry[100] = {'\0'};
char array[100] =……
1042: [编程入门]电报加密
摘要:#此题和上一题类似,也需要接收空格,同时还需要进行字母加密,难度稍高。
```cpp
#include
#include
#include
using namespace std;
/……
c++语言解决电报加密
摘要:解题思路:注意事项:参考代码:#include<iostream>#include<cstdio>#include<string.h>using namespace std;void get(char……
[编程入门]电报加密
摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ char s[100]; gets(s); for(int i=0;s[i];i++){ if(s[i]>=……