博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
凯撒加密问题程序
阅读量:5328 次
发布时间:2019-06-14

本文共 1841 字,大约阅读时间需要 6 分钟。

设计思想:加密的过程是将字母在字母表中的位置向后移两位,即A编程D,字符串+3,解密时字符串-3

程序流程图:

源代码:

//王冶雯   凯撒问题加密和解密     关键点:加密是字符串+3,解密时-3

package string11;

import java.util.Scanner;

public class jiami 

{

 

public static void main(String[] args)throws Exception

{

// TODO Auto-generated method stub

System.out.println("[A 加密 ] [J 解密],Please Choose One");

Scanner s=new Scanner(System.in);//创建Scanner对象

String s1=s.nextLine();//获取本行字符串

if (s1.equalsIgnoreCase("A"))//判断s1与A的大小

 

{

int key;

System.out.println("请输入明文:");

Scanner sc=new Scanner(System.in);

String ss=sc.nextLine();

System.out.println("请输入密钥:");

Scanner scc=new Scanner(System.in);

key=scc.nextInt();//将输入的字符转化成int型

Encryption(ss,key);//调用Encryption方法

}

else if(s1.equalsIgnoreCase("J"));

{

int key;

System.out.println("请输入密文:");

Scanner sc=new Scanner(System.in);

String ss =sc.nextLine();

System.out.println("请输入密钥:");

Scanner scc=new Scanner(System.in);

key=scc.nextInt();

Decrypt(ss,key);//调用Encryption方法

}

}

//加密程序 

public static void Encryption(String str,int t)

{

String string="";

int i;

char c;

for(i=1;i<str.length();i++)

{

c=str.charAt(i);

if(c>='a'&&c<='z')//如果字符中的某个字符是小写的

{

c+=t % 26;///移动26位

if(c<'a')

c+=26;//向左超界

if(c>'z')

c-=26;//向右超界

}

else if(c>='A'&&c<='Z')//如果字符中的某个字符是大写的

{

c+=t % 26;

if(c<'A')

c+=26;//向左超界

if(c>'Z')

c-=26;//向右超界

}

string +=c;//将加密后的字符连成字符串

}

System.out.println(str +"加密后为:" + string);

}

public static void Decrypt(String str,int n)

{

int t;

t=Integer.parseInt("-" +n);

String string="";

int i;

for(i=0;i<str.length();i++)

{

char c=str.charAt(i);

if(c>='a'&&c<='z')//如果字符中的某个字符是小写的

{

c+=t % 26;//移动26位

if(c<'a')

c+=26;//向左超界

if(c>'z')

c-=26;//向右超界

}

else if(c>='A'&&c<='Z')//如果字符中的某个字符是大写的

{

c+=t % 26;

if(c<'A')

c+=26;//向左超界

if(c>'Z')

c-=26;//向右超界

}

string +=c;//将加密后的字符连成字符串

}

System.out.println(str +"解密后为:" + string);

}

}

 

截图:

转载于:https://www.cnblogs.com/jingjing0629/p/4908024.html

你可能感兴趣的文章
练习10-1 使用递归函数计算1到n之和(10 分
查看>>
Oracle MySQL yaSSL 不明细节缓冲区溢出漏洞2
查看>>
windows编程ASCII问题
查看>>
.net webService代理类
查看>>
Code Snippet
查看>>
Node.js Express项目搭建
查看>>
zoj 1232 Adventure of Super Mario
查看>>
1201 网页基础--JavaScript(DOM)
查看>>
组合数学 UVa 11538 Chess Queen
查看>>
oracle job
查看>>
Redis常用命令
查看>>
XML学习笔记(二)-- DTD格式规范
查看>>
IOS开发学习笔记026-UITableView的使用
查看>>
[转载]电脑小绝技
查看>>
windos系统定时执行批处理文件(bat文件)
查看>>
thinkphp如何实现伪静态
查看>>
BZOJ 2243: [SDOI2011]染色( 树链剖分 )
查看>>
BZOJ 1925: [Sdoi2010]地精部落( dp )
查看>>
c++中的string常用函数用法总结!
查看>>
界面交互之支付宝生活圈pk微信朋友圈
查看>>