牛客字符串加密

1、对输入的字符串进行加解密,并输出。

2加密方法为:

当内容是英文字母时则用该英文字母的后一个字母替换,同时字母变换大小写,如字母a时则替换为B;字母Z时则替换为a;

当内容是数字时则把该数字加1,如0替换1,1替换2,9替换0;

其他字符不做变化。

3、解密方法为加密的逆过程。

接口描述:

实现接口,每个接口实现1个基本操作:

void Encrypt (char aucPassword[], char aucResult[]):在该函数中实现字符串加密并输出

说明:

1、字符串以\0结尾。

2、字符串最长100个字符。

int unEncrypt (char result[], char password[]):在该函数中实现字符串解密并输出

说明:

1、字符串以\0结尾。

2、字符串最长100个字符。
public class StrEnAndDecryption {
    public static final String str1 = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789";
    public static final String str2 = "BCDEFGHIJKLMNOPQRSTUVWXYZAbcdefghijklmnopqrstuvwxyza1234567890";

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        while (sc.hasNext()) {
            String strEncrypt = sc.nextLine();//待加密字符串
            String strUnEncrypt = sc.nextLine();//待解密字符串

            char[] aucPassword = strEncrypt.toCharArray();
            char[] password = strUnEncrypt.toCharArray();
            Encrypt(aucPassword);
            unEncrypt(password);
        }
    }

    //字符串加密
    public static void Encrypt(char aucPassword[]) {
        StringBuffer sb = new StringBuffer();
        for (int i = 0; i< aucPassword.length;i++) {
            for (int j =0; j< str1.length();j++){
                char c = str1.charAt(j);
                if (c == aucPassword[i]){
                    sb.append(str2.charAt(j));
                }
            }
        }
        System.out.println(sb.toString());
    }

    //字符串解密
    public static void unEncrypt(char password[]) {
        StringBuffer sb = new StringBuffer();
        for (int i = 0; i < password.length; i++){
            for (int j =0; j<str2.length(); j++){
                char c = str2.charAt(j);
                if (c == password[i]) {
                    sb.append(str1.charAt(i));
                }
            }
        }
        System.out.println(sb.toString());
    }
}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值