getline的使用 摘要:#include<bits/stdc++.h> using namespace std; int main() { char c[1000]; cin.getline(c,1000); …… 题解列表 2024年07月12日 0 点赞 0 评论 141 浏览 评分:0.0
电报加密C++ 摘要:解题思路:注意事项:参考代码:#include <iostream>#include <string>#include <stdlib.h>using namespace std;int main()…… 题解列表 2024年06月12日 0 点赞 0 评论 138 浏览 评分:8.0
求解电报加密 摘要:解题思路:在定义字符的同时拿到该字符,写入死循环以便循环操作判断字符是否在范围内,若在,则输出字符的后一个把最后一个字符改成第一个字符以达到要求输出字符注意事项:在输出下一位时要用a+=1,再在最后输…… 题解列表 2024年01月22日 0 点赞 0 评论 59 浏览 评分:0.0
[编程入门]电报加密 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ string s; getline(cin,s)…… 题解列表 2023年05月21日 0 点赞 0 评论 72 浏览 评分:0.0
1042: [编程入门]电报加密 摘要:#此题和上一题类似,也需要接收空格,同时还需要进行字母加密,难度稍高。 ```cpp #include #include #include using namespace std; /…… 题解列表 2023年02月23日 0 点赞 1 评论 170 浏览 评分:9.9
1042: [编程入门]电报加密 摘要:```cpp #include using namespace std; int main() { char s[1000]; int i; gets(s); …… 题解列表 2022年12月06日 0 点赞 0 评论 226 浏览 评分:9.9
电报加密; 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<string>using namespace std;int main(){ string a; whil…… 题解列表 2022年10月26日 0 点赞 0 评论 157 浏览 评分:0.0
电 报 加 密 摘要: #include #include #include #include using namespace std; int main…… 题解列表 2022年10月12日 0 点赞 0 评论 91 浏览 评分:0.0
1042: [编程入门]电报加密 摘要:解题思路:注意事项:参考代码:#include <iostream> #include <string> using namespace std; int main() { st…… 题解列表 2022年10月11日 0 点赞 0 评论 159 浏览 评分:0.0
[编程入门]电报加密 摘要:解题思路:因为字母变成其下一字母,会用到一堆字符,所以要用字符串,将是字母的转换,不是字母的不转换注意事项:将是字母的转换,不是字母的不转换参考代码:#include<bits/stdc++.h> …… 题解列表 2022年05月10日 0 点赞 0 评论 252 浏览 评分:6.0