[编程入门]电报加密 C语言 摘要:解题思路:gets是不是只能在C语言中使用注意事项:参考代码:#include<stdio.h>#include <string.h>using namespace std;int main(){ …… 题解列表 2024年09月11日 0 点赞 0 评论 647 浏览 评分:0.0
1042: [编程入门]电报加密 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char a[100]; gets(a); for(int…… 题解列表 2024年09月07日 0 点赞 0 评论 441 浏览 评分:0.0
getline的使用 摘要:#include<bits/stdc++.h> using namespace std; int main() { char c[1000]; cin.getline(c,1000); …… 题解列表 2024年07月12日 1 点赞 0 评论 434 浏览 评分:0.0
电报加密C++ 摘要:解题思路:注意事项:参考代码:#include <iostream>#include <string>#include <stdlib.h>using namespace std;int main()…… 题解列表 2024年06月12日 0 点赞 0 评论 389 浏览 评分:8.0
编写题解 1042: [编程入门]电报加密 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<stdlib.h> #include<string.h> void count(char* str){ …… 题解列表 2024年05月29日 0 点赞 0 评论 717 浏览 评分: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 评论 364 浏览 评分:0.0
1042: [编程入门]电报加密 摘要:解题思路:灵活运用ctype函数注意事项:注意大小写参考代码:#define _CRT_SECURE_NO_WARNINGS#pragma warning(disable:6031)#include …… 题解列表 2024年05月08日 0 点赞 0 评论 292 浏览 评分:0.0
1042: [编程入门]电报加密 摘要:解题思路:注意事项:参考代码:s = input() arr = "" for i in range(len(s)): if s[i] == ' ': …… 题解列表 2024年04月19日 0 点赞 0 评论 374 浏览 评分: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 评论 375 浏览 评分:9.9
1042: [编程入门]电报加密 摘要:解题思路:注意事项:参考代码:c=str(input())for i in c: if 'a'<=i<='z' or 'A'<=i<='Z…… 题解列表 2024年02月20日 0 点赞 0 评论 295 浏览 评分:0.0