不用数组的和指针的方式完成这道题-《C语言》 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<string.h> int main() { char arr; while((arr = g…… 题解列表 2022年12月14日 0 点赞 0 评论 182 浏览 评分:0.0
编写题解 1042: [编程入门]电报加密 思路清晰 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ int i; char a[100]; gets(a…… 题解列表 2022年12月27日 0 点赞 0 评论 179 浏览 评分:0.0
1042: [编程入门]电报加密 简单的凯撒密码 摘要:解题思路:一看就是凯撒密码,循环替换就正确。注意事项:参考代码:x=input()s=""for i in x: if i>="a" and i<="z" or i>="A" and i<="Z"…… 题解列表 2022年12月29日 0 点赞 0 评论 219 浏览 评分:0.0
[编程入门]电报加密 摘要:解题思路:注意事项:1、只要字母改变,其余字符不变2、'z'要变成'a'和'Z'要变成'A'比较特殊3、要用到函数ord()将字母转为a…… 题解列表 2023年01月03日 0 点赞 0 评论 237 浏览 评分:0.0
c++语言解决电报加密 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<cstdio>#include<string.h>using namespace std;void get(char…… 题解列表 2023年01月11日 0 点赞 0 评论 164 浏览 评分:0.0
简单 初学 即 懂! 摘要:```c #include #include int main(){ char arry[100] = {'\0'}; char array[100] =…… 题解列表 2023年02月25日 0 点赞 0 评论 212 浏览 评分:0.0
函數調用完成加密 摘要:解题思路:1.先要讀入字符串,因需要包含可能的空格,故定義字符數組後,不能只用%s讀入 2.數組讀入後,需要遍歷,查找符合條件的字符,再來調用函數 …… 题解列表 2023年04月01日 0 点赞 0 评论 179 浏览 评分:0.0
[编程入门]电报加密 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ string s; getline(cin,s)…… 题解列表 2023年05月21日 0 点赞 0 评论 238 浏览 评分:0.0
电报加密简单版 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include<string.h>int main(){ char a[200]; int i; gets(a); for(i=0;…… 题解列表 2023年05月28日 0 点赞 0 评论 251 浏览 评分:0.0