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

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

筛选

电报加密(C语言)

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

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

摘要:解题思路:注意事项:参考代码:#include <stdio.h> #include <string.h> void fun(char a[])//向后移动一位 {     for (int ……

电报加密——解题

摘要:解题思路:此题较简单,即先输入一行字符串,然后将小写字母(a-y)加一,将z直接变为a。最后输出字符串。注意事项:改变字符串的过程应该注意先将z变为a,再将(a-y)加一,否则y也将变为a。参考代码:……

1042题 :电报加密

摘要:# 自己写的代码 ```c #include #include int main() { char a[20]; gets(a); int len; len=strlen……

电报加密简单版

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

[编程入门]电报加密

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){    string s;    getline(cin,s)……

函數調用完成加密

摘要:解题思路:1.先要讀入字符串,因需要包含可能的空格,故定義字符數組後,不能只用%s讀入                2.數組讀入後,需要遍歷,查找符合條件的字符,再來調用函數            ……

电报加密代码简单粗暴

摘要:解题思路:用for循环游历数组用if语句找到a~Z,由于z和Z不能直接加1变成a所以我们吧判断写成arr[i]>=&#39;a&#39;&&arr[i]<&#39;z&#39;,和arr[i]>=&#……