................... 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>#include<ctype.h>int main(){ char s[1000]; g…… 题解列表 2023年12月19日 0 点赞 0 评论 82 浏览 评分:0.0
java--study||O.o 摘要:参考代码:import java.util.Scanner; public class Main { public static void main(String[] args) …… 题解列表 2024年01月21日 0 点赞 0 评论 208 浏览 评分:9.9
求解电报加密 摘要:解题思路:在定义字符的同时拿到该字符,写入死循环以便循环操作判断字符是否在范围内,若在,则输出字符的后一个把最后一个字符改成第一个字符以达到要求输出字符注意事项:在输出下一位时要用a+=1,再在最后输…… 题解列表 2024年01月22日 0 点赞 0 评论 59 浏览 评分:0.0
1042: [编程入门]电报加密 摘要:解题思路:注意事项:参考代码:c=str(input())for i in c: if 'a'<=i<='z' or 'A'<=i<='Z…… 题解列表 2024年02月20日 0 点赞 0 评论 74 浏览 评分:0.0
1042: [编程入门]电报加密--简单的问题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char a[1000]; char b[1000]; gets(a); i…… 题解列表 2024年03月11日 0 点赞 0 评论 106 浏览 评分:9.9
1042: [编程入门]电报加密 摘要:解题思路:注意事项:参考代码:s = input() arr = "" for i in range(len(s)): if s[i] == ' ': …… 题解列表 2024年04月19日 0 点赞 0 评论 140 浏览 评分:0.0
1042: [编程入门]电报加密 摘要:解题思路:灵活运用ctype函数注意事项:注意大小写参考代码:#define _CRT_SECURE_NO_WARNINGS#pragma warning(disable:6031)#include …… 题解列表 2024年05月08日 0 点赞 0 评论 75 浏览 评分:0.0
1042 电报加密(while循环解决) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>#include<stdlib.h> int main(){ char s[100]; gets(s…… 题解列表 2024年05月16日 0 点赞 0 评论 135 浏览 评分:0.0
编写题解 1042: [编程入门]电报加密 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<stdlib.h> #include<string.h> void count(char* str){ …… 题解列表 2024年05月29日 0 点赞 0 评论 110 浏览 评分:0.0
电报加密C++ 摘要:解题思路:注意事项:参考代码:#include <iostream>#include <string>#include <stdlib.h>using namespace std;int main()…… 题解列表 2024年06月12日 0 点赞 0 评论 138 浏览 评分:8.0