字符串加解密

题目描述:

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个字符。

import java.util.Scanner;

public class Main
{
    public static void main(String[] args) {
        Scanner scanner = new Scanner(System.in);
        while (scanner.hasNext())
        {
            String str1 = scanner.next();
            String str2 = scanner.next();
            Encrypt(str1);
            unEncrypt(str2);
        }
    }

    public static void Encrypt(String str)
    {
        for (char c: str.toCharArray())
        {
            if (c >= 'a' && c <= 'z')
            {
                if (c == 'z')
                    System.out.print('A');
                else
                    System.out.print((char)(Character.toUpperCase(c) + 1));
            }
            else if (c >= 'A' && c <= 'Z')
            {
                if (c == 'Z')
                    System.out.print('a');
                else
                    System.out.print((char)(Character.toLowerCase(c) + 1));
            }
            else if (c >= '0' && c <= '9')
            {
                if (c == '9')
                    System.out.print('0');
                else
                    System.out.print((char)(c + 1));
            }
        }
        System.out.println();
    }

    public static void unEncrypt(String str)
    {
        for (char c: str.toCharArray())
        {
            if (c >= 'a' && c <= 'z')
            {
                if (c == 'a')
                    System.out.print('Z');
                else
                    System.out.print((char)(Character.toUpperCase(c) - 1));
            }
            else if (c >= 'A' && c <= 'Z')
            {
                if (c == 'A')
                    System.out.print('z');
                else
                    System.out.print((char)(Character.toLowerCase(c) - 1));
            }
            else if (c >= '0' && c <= '9')
            {
                if (c == '0')
                    System.out.print('9');
                else
                    System.out.print((char)(c - 1));
            }
        }
        System.out.println();
    }
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值