题解 | #简单密码#

简单密码

https://www.nowcoder.com/practice/7960b5038a2142a18e27e4c733855dac

IO操作比较耗时

import java.util.Scanner;

// 注意类名必须为 Main, 不要有任何 package xxx 信息
public class Main {
    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        for (char c : in.next().toCharArray()) {
            if ('a' <= c && c <= 'r') {
                c = (char) ((c - 'a') / 3 + '2');
            } else if (c == 's') {
                c = '7';
            } else if ('t' <= c && c <= 'v') {
                c = '8';
            } else if ('w' <= c && c <= 'z') {
                c = '9';
            } else if (Character.isUpperCase(c)) {
                c = (char) ((c - 'A' + 1) % 26 + 'a');
            }
            System.out.print(c);
        }
    }
}

全部评论

相关推荐

宇智波爱学习:我还没收到笔试
投递荣耀等公司10个岗位
点赞 评论 收藏
分享
双非坐过牢:非佬,可以啊10.28笔试,11.06评估11.11,11.12两面,11.19oc➕offer
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务