编写题解 1042: [编程入门]电报加密 C语言+ 摘要:解题思路:1.遍历输入的字符串2.判断输入的字符串,是否存在'a' -> '…… 题解列表 2025年11月29日 1 点赞 0 评论 68 浏览 评分:0.0
[编程入门]电报加密 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <string.h>int main(){ char str[30…… 题解列表 2025年11月04日 0 点赞 0 评论 158 浏览 评分:0.0
scanf用法获取电报 摘要:#include#includeint main(){ int length; char *a=NULL; scanf("%[^\n]%n%*c",a=cal…… 题解列表 2025年10月07日 0 点赞 0 评论 265 浏览 评分:0.0
电报加密(一看就会) 摘要:解题思路:直到b=='\n'才结束循环注意事项:b的值参考代码:#include<stdio.h> int main(){ char b; int i=0; while(…… 题解列表 2024年11月01日 3 点赞 0 评论 961 浏览 评分:0.0
[编程入门]电报加密 C语言 摘要:解题思路:gets是不是只能在C语言中使用注意事项:参考代码:#include<stdio.h>#include <string.h>using namespace std;int main(){ …… 题解列表 2024年09月11日 0 点赞 0 评论 630 浏览 评分:0.0
1042: [编程入门]电报加密 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char a[100]; gets(a); for(int…… 题解列表 2024年09月07日 0 点赞 0 评论 426 浏览 评分:0.0
编写题解 1042: [编程入门]电报加密 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<stdlib.h> #include<string.h> void count(char* str){ …… 题解列表 2024年05月29日 0 点赞 0 评论 707 浏览 评分: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 评论 356 浏览 评分:0.0
1042: [编程入门]电报加密 摘要:解题思路:灵活运用ctype函数注意事项:注意大小写参考代码:#define _CRT_SECURE_NO_WARNINGS#pragma warning(disable:6031)#include …… 题解列表 2024年05月08日 0 点赞 0 评论 286 浏览 评分: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 评论 366 浏览 评分:9.9