题解 | #字符串加解密#

字符串加解密

http://www.nowcoder.com/practice/2aa32b378a024755a3f251e75cbf233a

import java.util.*;
// 注意类名必须为 Main, 不要有任何 package xxx 信息
public class Main {
    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        // 注意 hasNext 和 hasNextLine 的区别
        while(in.hasNextLine()){
            String codeBefore=in.nextLine();
            String codeAfter=in.nextLine();
            //加密
            for(int i=0;i<codeBefore.length();i++){
                if(isAlpha(codeBefore.charAt(i))){//字母的处理
                    if(codeBefore.charAt(i)=='Z'){
                        System.out.print('a');
                    }else if(codeBefore.charAt(i)=='z'){
                        System.out.print('A');
                    }else{
                        System.out.print(transform((char)(codeBefore.charAt(i)+1)));
                    }
                }else{//数字的处理
                    if(codeBefore.charAt(i)=='9'){
                        System.out.print('0');
                    }else{
                        System.out.print((char)(codeBefore.charAt(i)+1));
                    }
                }
            }
            System.out.println();//换行
            //解密
            for(int i=0;i<codeAfter.length();i++){
                if(isAlpha(codeAfter.charAt(i))){//字母的处理
                    if(codeAfter.charAt(i)=='A'){
                        System.out.print('z');
                    }else if(codeAfter.charAt(i)=='a'){
                        System.out.print('Z');
                    }else{
                        System.out.print(transform((char)(codeAfter.charAt(i)-1)));
                    }
                }else{//数字的处理
                    if(codeAfter.charAt(i)=='0'){
                        System.out.print('9');
                    }else{
                        System.out.print((char)(codeAfter.charAt(i)-1));
                    }
                }
            }
            System.out.println();//换行
        }

    }
    //大小写字母转换
    public static char transform(char ch){
        if(ch>='A' && ch<='Z'){
            return (char)(ch+32);
        }
        return (char)(ch-32);
    }
    //判断是否是字母
    public static boolean isAlpha(char ch){
        if(ch>='0' && ch<='9'){
            return false;
        }
        return true;
    }
}
全部评论

相关推荐

花环鞣:他没有祝你26年心想事成,所以不给你offer
点赞 评论 收藏
分享
04-02 10:09
门头沟学院 Java
用微笑面对困难:这里面问题还是很多的,我也不清楚为啥大家会感觉没啥问题。首先就是全栈开发实习9个月的内容都没有java实习生的内容多,1整个技术栈没看出太核心和难点的内容,感觉好像被拉过去打杂了,而且全栈基本上很容易被毙。里面能问的bug是在太多了比如L:继承 BaseMapper 可直接使用内置方法’。请问你的 BaseMapper 是如何扫描实体类注解如果瞬时产生 100 个上传任务,MySQL 的索引设计是否会有瓶颈?你做过分库分表或者索引优化吗?全栈的内容可以针对动态难点去搞,技能特长写在下面吧,你写了这么多技能,项目和实习体现了多少?你可以在项目里多做文章然后把这个放下去,从大致来看实习不算太水,有含金量你也要写上内容针对哨兵里面的节点变化能问出一万个问题,这个很容易就爆了。
提前批简历挂麻了怎么办
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务