1042: [编程入门]电报加密
摘要:解题思路:注意事项:参考代码:#include <stdio.h>
#include <string.h>
void fun(char a[])//向后移动一位
{
for (int ……
1042题 :电报加密
摘要:# 自己写的代码
```c
#include
#include
int main()
{
char a[20];
gets(a);
int len;
len=strlen……
[编程入门]电报加密
摘要:解题思路:注意事项:参考代码:#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] =……