用string类直接秒了 摘要:```cpp #include #include using namespace std; int main() { string str; cin >> str; …… 题解列表 2024年02月12日 10 点赞 0 评论 1016 浏览 评分:10.0
java--study||O.o 摘要:参考代码:import java.util.Scanner; public class Main { public static void main(String[] args) { …… 题解列表 2024年05月11日 3 点赞 0 评论 792 浏览 评分:10.0
密码破译c语言解析 摘要:解题思路:本题非常简单,只需要了解ASCII就可以解出。注意事项:1.注意最后要输出的格式为字符串。参考代码:#include<stdio.h>int main(){ char a[10]; …… 题解列表 2024年06月19日 3 点赞 0 评论 664 浏览 评分:10.0
密码破译(C语言新手) 摘要:解题思路:根据ASCII码表可知,只需将它们的数值加4即可得到想要的数据注意事项:参考代码:#include <stdio.h>int main(){ char a,b,c,d,e; scanf("%…… 题解列表 2024年11月10日 18 点赞 1 评论 2503 浏览 评分:10.0
编写题解 1003: [编程入门]密码破译 摘要:解题思路:译码规律是:用原来字母后面的第4个字母代替原来的字母. 注意事项:参考代码:#include <stdio.h>int main() { // 初始化变量 char c1 =…… 题解列表 2024年12月05日 21 点赞 0 评论 4120 浏览 评分:10.0