用两种方法来解决1042:电报加密(C语言代码) 摘要:##题目链接:[1042: [编程入门]电报加密](https://www.dotcpp.com/oj/problem1042.html) #解题基本思路: - 得到电报内容 - 进行加密操作 …… 题解列表 2020年08月22日 1 点赞 0 评论 2214 浏览 评分:9.6
[编程入门]电报加密-题解(Python代码)python 摘要:ord()函数返回对应字符的ascii码 chr()函数返回ascii码对应的字符  步骤…… 题解列表 2019年11月22日 0 点赞 0 评论 1400 浏览 评分:9.7
不需要数组和指针的做法!!! 摘要:解题思路:注意事项:参考代码: #include<stdio.h>int main(){ char c; while((c=getchar())!='\n'&&c!=-1)…… 题解列表 2017年07月25日 5 点赞 6 评论 1434 浏览 评分:9.8
[编程入门]电报加密-题解(C语言代码)看了两个别人的,要不是太复杂,要不是格式不好,希望我的和您心意 摘要:答案如下: #include #include int main() { char s[100]; int i = 0; gets(s); …… 题解列表 2019年10月29日 0 点赞 3 评论 991 浏览 评分:9.8
[编程入门]电报加密-题解(Python代码) 摘要:** 代码如下:** x=input() s="" for i in x: if i>="a" and i="A" and i…… 题解列表 2019年12月04日 0 点赞 6 评论 2071 浏览 评分:9.9
[编程入门]电报加密-题解(C语言,多种字符均可,大小写,空格) 摘要:**直接看代码,代码中有注解** ```c #include void secert(char a[]) { while(*a)//还有字符时 { if(…… 题解列表 2020年04月07日 0 点赞 1 评论 2502 浏览 评分:9.9
[编程入门]电报加密-题解(C++代码)去掉空格的简单做法 摘要:解题思路:注意事项:参考代码:#include <iostream>#include <cstring>#include <cstdio>using namespace std;int main(){…… 题解列表 2020年11月17日 0 点赞 0 评论 1570 浏览 评分:9.9
[编程入门]电报加密-题解(C++代码) 摘要:解题思路:wu注意事项:新手使用参考代码:#include <bits/stdc++.h>using namespace std;int main(){ char a[10000]; …… 题解列表 2020年12月05日 0 点赞 0 评论 1354 浏览 评分:9.9
[编程入门]电报加密-题解(Java代码) 摘要:解题思路:注意事项:参考代码:import java.util.Scanner; public class Main { public static void main(String[] …… 题解列表 2021年01月12日 0 点赞 0 评论 955 浏览 评分:9.9