[编程入门]电报加密 摘要:解题思路:注意事项:1、只要字母改变,其余字符不变2、'z'要变成'a'和'Z'要变成'A'比较特殊3、要用到函数ord()将字母转为a…… 题解列表 2023年01月03日 0 点赞 0 评论 121 浏览 评分:0.0
[编程入门]电报加密 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ char s[100]; gets(s); for(int i=0;s[i];i++){ if(s[i]>=…… 题解列表 2023年01月08日 0 点赞 1 评论 109 浏览 评分:9.9
c++语言解决电报加密 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<cstdio>#include<string.h>using namespace std;void get(char…… 题解列表 2023年01月11日 0 点赞 0 评论 87 浏览 评分:0.0
1042: [编程入门]电报加密 摘要:#此题和上一题类似,也需要接收空格,同时还需要进行字母加密,难度稍高。 ```cpp #include #include #include using namespace std; /…… 题解列表 2023年02月23日 0 点赞 1 评论 188 浏览 评分:9.9
简单 初学 即 懂! 摘要:```c #include #include int main(){ char arry[100] = {'\0'}; char array[100] =…… 题解列表 2023年02月25日 0 点赞 0 评论 128 浏览 评分:0.0
电报加密(无需过多解释----自定义) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>char plus(char k[]){ int i=0; while(k[i]!='\0') { …… 题解列表 2023年02月28日 0 点赞 2 评论 225 浏览 评分:9.9
电报加密代码简单粗暴 摘要:解题思路:用for循环游历数组用if语句找到a~Z,由于z和Z不能直接加1变成a所以我们吧判断写成arr[i]>='a'&&arr[i]<'z',和arr[i]>=&#…… 题解列表 2023年03月21日 0 点赞 0 评论 227 浏览 评分:9.9
函數調用完成加密 摘要:解题思路:1.先要讀入字符串,因需要包含可能的空格,故定義字符數組後,不能只用%s讀入 2.數組讀入後,需要遍歷,查找符合條件的字符,再來調用函數 …… 题解列表 2023年04月01日 0 点赞 0 评论 81 浏览 评分:0.0
[编程入门]电报加密 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ string s; getline(cin,s)…… 题解列表 2023年05月21日 0 点赞 0 评论 106 浏览 评分:0.0