加密与解密问题



package Day25;
import java.util.*;
public class Test {

	public static void main(String[] args) {
		// TODO Auto-generated method stub
Scanner sc =new Scanner(System.in);
String str1 =sc.next();
char[] chin=str1.toCharArray();
char[] chout=new char[chin.length];

String str2 =sc.next();
char[] unchin=str2.toCharArray();
char[] unchout=new char[unchin.length];

Test test1=new Test();
test1.Encrypt(chin, chout);

Test test2=new Test();
test2.unEncrypt(unchout,unchin);//加密过程
	}
	public static void Encrypt(char[] aucPassword,char aucResult[])
	{
		for(int i=0;i<aucPassword.length;i++)
		{
		if(aucPassword[i]>='a'&&aucPassword[i]<'z')
		{
			aucPassword[i]=(char) (aucPassword[i]-31);
			
		}
		else if(aucPassword[i]=='z')
		{
			aucPassword[i]='A';	
		}else if(aucPassword[i]>='A'&&aucPassword[i]<'Z')
		{
			aucPassword[i]=(char) (aucPassword[i]+33);
			
		}
		else if(aucPassword[i]=='Z')
		{
			aucPassword[i]='a';	
		}
		else if(aucPassword[i]>='0'&&aucPassword[i]<'9')
		{
			aucPassword[i]=(char) (aucPassword[i]+1);
			
		}
		else if(aucPassword[i]=='9')
		{
			aucPassword[i]='0';	
		}
		}
		for(int j=0;j<aucResult.length;j++)
		{
			aucResult[j]=aucPassword[j];
			System.out.print(aucResult[j]);
			
		}
		System.out.println();
	}

	public static void unEncrypt(char[] result,char password[])//解密操作
	{
		for(int i=0;i<password.length;i++)
		{
		if(password[i]>'a'&&password[i]<='z')
		{
			password[i]=(char) (password[i]-33);
			
		}
		else if(password[i]=='a')
		{
			password[i]='Z';	
		}else if(password[i]>'A'&&password[i]<='Z')
		{
			password[i]=(char) (password[i]+31);
			
		}
		else if(password[i]=='A')
		{
			password[i]='z';	
		}
		else if(password[i]>'0'&&password[i]<='9')
		{
			password[i]=(char) (password[i]-1);
			
		}
		else if(password[i]=='0')
		{
			password[i]='9';	
		}
		}
		for(int j=0;j<result.length;j++)
		{
			result[j]=password[j];
			System.out.print(result[j]);
		}
		
	}

}

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

2加密方法为:

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

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

其他字符不做变化。

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

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

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值