[编程入门]电报加密(简单入门) 摘要:解题思路:注意事项:参考代码:注意事项:字符串需要引号才能通过ord转换为数字形式a=str(input()) res=[] for i in a: i=ord(i)#122 …… 题解列表 2022年04月07日 0 点赞 0 评论 615 浏览 评分:9.9
编程入门电报加密 摘要:注意事项:判断输入字符是否为字母参考代码:import java.util.Scanner;public class Main { public static void main(String[] a…… 题解列表 2022年03月29日 0 点赞 0 评论 649 浏览 评分:9.9
!!!!终于不再报错(c++代码) 摘要:解题思路:直接上代码(血泪史啊)注意事项: 不要忽略其他字符!!尤其考虑空格 ,我使用的函数是getline();参考代码#include <iostream>using n…… 题解列表 2022年03月20日 0 点赞 0 评论 256 浏览 评分:0.0
编写题解 1042: [编程入门]电报加密--解题 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<stdio.h>#include<string.h>#include<cmath>using namespace s…… 题解列表 2022年03月09日 0 点赞 0 评论 95 浏览 评分:0.0
1042: [编程入门]电报加密 摘要:解题思路:读取输入的字符串(带空格),指针传给子函数,所有字母的ASCii码值+1,遇到z就ASCii码值-25,再把修改后的字符串传出。注意事项:(1)字符串的长度最好定义大一点,maxSize =…… 题解列表 2022年03月05日 0 点赞 0 评论 170 浏览 评分:0.0
[编程入门]电报加密 摘要:解题思路:注意事项:参考代码:a=input()b=[]for i in a: if i>='a' and i<'z'or i>='A' and …… 题解列表 2022年03月04日 0 点赞 0 评论 154 浏览 评分:0.0
C++电报加密 摘要:#include using namespace std; int main() { char ch; while(cin.get(ch)){ //cin.get(ch)通常…… 题解列表 2022年03月02日 0 点赞 3 评论 556 浏览 评分:9.9
还行,一般般吧 摘要:解题思路:注意事项:参考代码:a=str(input())b=[]for i in a: i=ord(i) if i in range(97,122): b.append(c…… 题解列表 2022年02月21日 0 点赞 0 评论 186 浏览 评分:6.0
【露离】告诉你50%错误是为什么 摘要:解题思路:注意事项:注意输入行,猜测系统测试时,有类似'zz aa 2wa'连着的测试数据,所以输入用list处理则为['z','z',' &#…… 题解列表 2022年02月05日 0 点赞 0 评论 123 浏览 评分:0.0
[编程入门]电报加密-题解(python代码) 摘要:解题思路: 利用ASCII值进行大小判断,注意 Z 和 z 进行特殊处理。注意事项:参考代码:s=input()x=''for i in s: if i == 'Z…… 题解列表 2022年01月25日 0 点赞 0 评论 420 浏览 评分:9.9