字符串的反码 (Java代码) 摘要:解题思路:注意事项:参考代码:import java.util.Scanner; public class Main{ public static void main(String[] ar…… 题解列表 2017年12月15日 0 点赞 0 评论 864 浏览 评分:9.9
字符串的反码 (C语言代码) 摘要:解题思路:注意事项:1:字符串中可能有空格,用while(~scanf("%s",a))不能获取空格! 2:题目条件是当且仅当输出一个!时才停止运行。参考代码:#include <stdio.h>#i…… 题解列表 2018年01月04日 0 点赞 1 评论 829 浏览 评分:0.0
优质题解 Manchester- 字符串的反码 摘要:解题思路:①:因为a的ascii码为97,z的ascii码为122,设输入的字符为x②:根据题目字符到a的距离与其反码到z的距离相等③:所以x的反码y='z'-(x-'a…… 题解列表 2018年03月30日 4 点赞 3 评论 1073 浏览 评分:9.0
字符串的反码 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cstdio> #include<cctype> #include<cstring> #include<s…… 题解列表 2018年04月18日 0 点赞 0 评论 792 浏览 评分:9.5
字符串的反码 (C++代码) 摘要:#include <iostream> #include <stdio.h> #include <cstring> #include <string> #include <algorithm>…… 题解列表 2018年08月24日 0 点赞 0 评论 967 浏览 评分:5.7
字符串的反码 (C语言代码) 摘要:解题思路:定义字符串“!”用于比较是否停止循环。在for循环中,将字母字符筛选出来,选大写字母为例: 当字母在26个字母中排在M及M之前,为一种情况,根据题目它距A的距离与反码距Z的距离相同,故…… 题解列表 2018年12月06日 0 点赞 0 评论 874 浏览 评分:0.0
字符串的反码-题解(C语言代码) 摘要:思路:接收一个字符串,计算长度,判断是否符合处理条件,如果仅有一个字符并且为‘!’,跳出循环,否则逐个字符进行处理.反码的处理a[i]='z'-(a[i]-'a);处理之后为a[i]='z'+'a'-…… 题解列表 2020年02月19日 0 点赞 0 评论 298 浏览 评分:0.0
字符串的反码-题解(C语言代码) 摘要:题解: 1):反码的求解:如果该字符是大写字母,那么等于Z-(该字符-'A')(即Z-该字符到A的距离)小写字母同理 2)因为题目说的是有且只有一个字符且如果该字符是!就结束循环…… 题解列表 2020年02月25日 0 点赞 0 评论 426 浏览 评分:0.0
字符串的反码-题解(C++代码) 摘要:```cpp #include #include #include using namespace std; int main(){ char a[80]; stri…… 题解列表 2020年03月16日 0 点赞 0 评论 399 浏览 评分:6.0
字符串的反码-题解(C++代码) 摘要: #include #include #include #include #include #include using namesp…… 题解列表 2020年03月29日 0 点赞 0 评论 579 浏览 评分:8.4