[编程入门]电报加密 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ int i; char a[1001]; ge…… 题解列表 2022年12月18日 0 点赞 0 评论 184 浏览 评分:9.9
不用数组的和指针的方式完成这道题-《C语言》 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<string.h> int main() { char arr; while((arr = g…… 题解列表 2022年12月14日 0 点赞 0 评论 108 浏览 评分:0.0
1042: [编程入门]电报加密 摘要:```cpp #include using namespace std; int main() { char s[1000]; int i; gets(s); …… 题解列表 2022年12月06日 0 点赞 0 评论 291 浏览 评分:9.9
1042: [编程入门]电报加密(c语言代码超简单) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char a[1000]; int i; gets(a); for(i=0;…… 题解列表 2022年11月22日 0 点赞 0 评论 164 浏览 评分:0.0
C语言 电报加密& 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>#define Long 80//允许输入字符串长度int main(){ v…… 题解列表 2022年11月20日 0 点赞 0 评论 164 浏览 评分:0.0
C 语言看看就好,简单易懂 摘要: #include int main() { char c = 0; while ((c = getchar()) != '\n' && c != -1)// -1表示getcha…… 题解列表 2022年11月05日 0 点赞 0 评论 227 浏览 评分:6.0
电报加密; 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<string>using namespace std;int main(){ string a; whil…… 题解列表 2022年10月26日 0 点赞 0 评论 200 浏览 评分:0.0
C语言解决 加密问题 摘要:解题思路:超简单,利用ASCLL代码表,相邻字母间相差1个ASCLL值注意事项:利用了strlen函数,需要#include<string,h>参考代码:#include <stdio.h>#incl…… 题解列表 2022年10月12日 0 点赞 0 评论 259 浏览 评分:9.3
电 报 加 密 摘要: #include #include #include #include using namespace std; int main…… 题解列表 2022年10月12日 0 点赞 0 评论 130 浏览 评分:0.0
1042: [编程入门]电报加密 摘要:解题思路:注意事项:参考代码:#include <iostream> #include <string> using namespace std; int main() { st…… 题解列表 2022年10月11日 0 点赞 0 评论 183 浏览 评分:0.0