题解 2854: 密码翻译

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

筛选

2854: 密码翻译

摘要:``` #include using namespace std; const int N=100010; string a; //字符串 int main() { getline(c……

题解 2854: 字符串的输入以及条件判断

摘要:解题思路:对输入字符串的每个元素进行判断,如果该字符为A~Y或a~y,则输出其下一个字符串;如果该字符为z或Z,则输出a或A注意事项:scanf函数对含空格的字符串的读取有限制,只会读到空格之前,对空……

2854: 密码翻译

摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;typedef long long ll;string a;const int N……

java--study||O.o

摘要:参考代码:import java.util.Scanner; public class Main { public static void main(String[] args) { Sc……

密码翻译:python

摘要:解题思路:了解ASCII码值与字符间的转换,ord()函数是将字符转成对应的ASCII码值,chr()函数是将ASCII码值转成对应的字符注意事项:参考代码:n=input()s=[]#print(o……

2854: 密码翻译

摘要:#include<stdio.h> #include<math.h> #include<string.h> # define N 100001 int main() {     c……

纯小丑题想圈钱

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