题解 2854: 密码翻译

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

筛选

2854——密码翻译

摘要:分别判断两种情况 做出对应修改参考代码:#include"stdio.h" #include"string.h"  typedef char string[111]; string str; ……

2854: 密码翻译

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

2854: 密码翻译

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

纯小丑题想圈钱

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

密码翻译:python

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

c++字符串简单解法

摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ string str; getline(cin,str); for(a……

密码翻译(必须会得偶)

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

2854: 密码翻译

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