[编程入门]电报加密 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ int i; char a[1001]; ge…… 题解列表 2022年12月18日 0 点赞 0 评论 140 浏览 评分:9.9
[编程入门]电报加密-题解(C++代码)去掉空格的简单做法 摘要:解题思路:注意事项:参考代码:#include <iostream>#include <cstring>#include <cstdio>using namespace std;int main(){…… 题解列表 2020年11月17日 0 点赞 0 评论 1303 浏览 评分:9.9
1042: [编程入门]电报加密 摘要:解题思路:注意事项:参考代码:#include <stdio.h> #include <string.h> void fun(char a[])//向后移动一位 { for (int …… 题解列表 2023年09月24日 0 点赞 0 评论 55 浏览 评分:9.9
电报加密(无需过多解释----自定义) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>char plus(char k[]){ int i=0; while(k[i]!='\0') { …… 题解列表 2023年02月28日 0 点赞 2 评论 189 浏览 评分:9.9
isalpha()判断 摘要:解题思路:注意事项:参考代码:a = str(input())s = ''for i in a: if i.isalpha(): t = chr(ord(i)+1)…… 题解列表 2022年04月23日 0 点赞 0 评论 244 浏览 评分:9.9
[编程入门]电报加密-题解(python代码) 摘要:解题思路: 利用ASCII值进行大小判断,注意 Z 和 z 进行特殊处理。注意事项:参考代码:s=input()x=''for i in s: if i == 'Z…… 题解列表 2022年01月25日 0 点赞 0 评论 421 浏览 评分:9.9
[编程入门]电报加密 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ char s[100]; gets(s); for(int i=0;s[i];i++){ if(s[i]>=…… 题解列表 2023年01月08日 0 点赞 1 评论 88 浏览 评分:9.9
[编程入门]电报加密-题解(Java代码) 摘要:解题思路:注意事项:参考代码:import java.util.Scanner; public class Main { public static void main(String[] …… 题解列表 2021年01月12日 0 点赞 0 评论 728 浏览 评分:9.9
[编程入门]电报加密-题解(C语言代码)看了两个别人的,要不是太复杂,要不是格式不好,希望我的和您心意 摘要:答案如下: #include #include int main() { char s[100]; int i = 0; gets(s); …… 题解列表 2019年10月29日 0 点赞 3 评论 789 浏览 评分:9.8