电报加密 超简单解法 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ char a[100]; cin.getline…… 题解列表 2025年03月31日 0 点赞 0 评论 116 浏览 评分:0.0
C++ : 类和两种访问权限的练习 摘要:解题思路:注意事项:类和结构体,两个大区别,1.类里面可以有自己的函数,2.类有三种访问权限,其中private私有权限,类外不可以访问,类内可以自由访问, public公有访问权限 ,类…… 题解列表 2025年03月30日 0 点赞 0 评论 100 浏览 评分:0.0
getline的使用 摘要:#include<bits/stdc++.h> using namespace std; int main() { char c[1000]; cin.getline(c,1000); …… 题解列表 2024年07月12日 0 点赞 0 评论 260 浏览 评分:0.0
电报加密C++ 摘要:解题思路:注意事项:参考代码:#include <iostream>#include <string>#include <stdlib.h>using namespace std;int main()…… 题解列表 2024年06月12日 0 点赞 0 评论 245 浏览 评分:8.0
求解电报加密 摘要:解题思路:在定义字符的同时拿到该字符,写入死循环以便循环操作判断字符是否在范围内,若在,则输出字符的后一个把最后一个字符改成第一个字符以达到要求输出字符注意事项:在输出下一位时要用a+=1,再在最后输…… 题解列表 2024年01月22日 0 点赞 0 评论 128 浏览 评分:0.0
[编程入门]电报加密 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ string s; getline(cin,s)…… 题解列表 2023年05月21日 0 点赞 0 评论 147 浏览 评分:0.0
1042: [编程入门]电报加密 摘要:#此题和上一题类似,也需要接收空格,同时还需要进行字母加密,难度稍高。 ```cpp #include #include #include using namespace std; /…… 题解列表 2023年02月23日 0 点赞 1 评论 208 浏览 评分:9.9
1042: [编程入门]电报加密 摘要:```cpp #include using namespace std; int main() { char s[1000]; int i; gets(s); …… 题解列表 2022年12月06日 0 点赞 0 评论 291 浏览 评分:9.9
电报加密; 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<string>using namespace std;int main(){ string a; whil…… 题解列表 2022年10月26日 0 点赞 0 评论 200 浏览 评分:0.0
电 报 加 密 摘要: #include #include #include #include using namespace std; int main…… 题解列表 2022年10月12日 0 点赞 0 评论 130 浏览 评分:0.0