电报加密(一看就会) 摘要:解题思路:直到b=='\n'才结束循环注意事项:b的值参考代码:#include<stdio.h> int main(){ char b; int i=0; while(…… 题解列表 2024年11月01日 1 点赞 0 评论 332 浏览 评分:0.0
编写题解 1042: [编程入门]电报加密 摘要:参考代码:import java.util.Scanner; public class Main { public static void main(String[] args) { …… 题解列表 2024年09月17日 0 点赞 0 评论 256 浏览 评分:9.9
[编程入门]电报加密 C语言 摘要:解题思路:gets是不是只能在C语言中使用注意事项:参考代码:#include<stdio.h>#include <string.h>using namespace std;int main(){ …… 题解列表 2024年09月11日 0 点赞 0 评论 172 浏览 评分:0.0
1042: [编程入门]电报加密 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char a[100]; gets(a); for(int…… 题解列表 2024年09月07日 0 点赞 0 评论 114 浏览 评分:0.0
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
编写题解 1042: [编程入门]电报加密 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<stdlib.h> #include<string.h> void count(char* str){ …… 题解列表 2024年05月29日 0 点赞 0 评论 110 浏览 评分: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: [编程入门]电报加密 摘要:解题思路:灵活运用ctype函数注意事项:注意大小写参考代码:#define _CRT_SECURE_NO_WARNINGS#pragma warning(disable:6031)#include …… 题解列表 2024年05月08日 0 点赞 0 评论 75 浏览 评分:0.0
1042: [编程入门]电报加密 摘要:解题思路:注意事项:参考代码:s = input() arr = "" for i in range(len(s)): if s[i] == ' ': …… 题解列表 2024年04月19日 0 点赞 0 评论 140 浏览 评分:0.0