2854: 密码翻译 摘要:解题思路:注意事项:参考代码:s = input()t = ""for i in s: if i.isalpha(): if i == 'Z': …… 题解列表 2024年08月01日 0 点赞 0 评论 331 浏览 评分:0.0
2854: 密码翻译 摘要: import java.util.Scanner; public class Main { public static void main(String[] args) { …… 题解列表 2023年10月04日 0 点赞 0 评论 279 浏览 评分:0.0
Py2854-密码翻译-简洁 摘要:参考代码:s=input()n=s.replace('z','Z').replace('a',…… 题解列表 2025年11月12日 0 点赞 0 评论 125 浏览 评分:0.0
2854——密码翻译 摘要:分别判断两种情况 做出对应修改参考代码:#include"stdio.h" #include"string.h" typedef char string[111]; string str; …… 题解列表 2022年10月28日 0 点赞 0 评论 580 浏览 评分:2.0
2854: 密码翻译 摘要:#include<stdio.h> #include<math.h> #include<string.h> # define N 100001 int main() { c…… 题解列表 2023年03月06日 0 点赞 0 评论 630 浏览 评分:9.9
2854: 密码翻译 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;typedef long long ll;string a;const int N…… 题解列表 2024年07月20日 0 点赞 0 评论 444 浏览 评分:9.9
题解 2854: 字符串的输入以及条件判断 摘要:解题思路:对输入字符串的每个元素进行判断,如果该字符为A~Y或a~y,则输出其下一个字符串;如果该字符为z或Z,则输出a或A注意事项:scanf函数对含空格的字符串的读取有限制,只会读到空格之前,对空…… 题解列表 2024年09月19日 0 点赞 0 评论 488 浏览 评分:9.9
java--study||O.o 摘要:参考代码:import java.util.Scanner; public class Main { public static void main(String[] args) { Sc…… 题解列表 2024年02月02日 0 点赞 0 评论 700 浏览 评分:9.9
2854: 密码翻译 摘要:``` #include using namespace std; const int N=100010; string a; //字符串 int main() { getline(c…… 题解列表 2023年12月29日 0 点赞 0 评论 299 浏览 评分:9.9
密码翻译:python 摘要:解题思路:了解ASCII码值与字符间的转换,ord()函数是将字符转成对应的ASCII码值,chr()函数是将ASCII码值转成对应的字符注意事项:参考代码:n=input()s=[]#print(o…… 题解列表 2023年10月19日 0 点赞 0 评论 450 浏览 评分:9.9