1.設計思想:加密就是將字符數據轉化爲ASC碼錶中的數字,a—w之間經過加3以後再轉化爲字符型輸出,x—z之間經過轉化爲ASC碼錶中的數字後減去23再轉化爲字符型輸出。解密就是將字符數據轉化爲ASC碼錶中的數字,d—z之間經過減去3以後再轉化爲字符型輸出,a—c之間經過轉化爲ASC碼錶中的數字後加23再轉化爲字符型輸出。java
2.程序流程圖app
3.程序源碼加密
import java.util.Scanner;
public class Code {
//嚴羽卿 凱撒加密與解密 2015 10 23
public static void main(String[] args) {
// TODO Auto-generated method stub
String input = null;
Scanner sc = new Scanner(System.in);
System.out.println("請輸入字母:");
input = sc.next();
StringBuffer code = new StringBuffer();
Scanner sc1=new Scanner(System.in);
System.out.println("加密請按1,解密請按2:");
int p;
p=sc1.nextInt();
if(p==1)
{
System.out.println("加密以後爲:");
for(int i = 0;i < input.length();i++)
{
char x = input.charAt(i);
if(x >= 'a' && x <= 'w')
{
x = (char)(x+3);
code.append(x);
}
if(x >= 'x' && x <= 'z')
{
x=(char)(x-23);
code.append(x);
}
if(x >= 'A' && x <= 'W')
{
x = (char) (x+3);設計
code.append(x);
}
if(x >= 'X' && x <= 'Z')
{
x=(char)(x-23);
code.append(x);
}code
}
}
if(p==2)
{
System.out.println("解密:");
for(int i = 0;i < input.length();i++)
{
char x = input.charAt(i);
if(x >= 'a' && x <= 'c')
{
x=(char)(x+23);
code.append(x);
}
else if(x >= 'd' && x <= 'z')
{
x = (char)(x-3);
code.append(x);
}
else if(x >= 'A' && x <= 'C')
{
x=(char)(x+23);
code.append(x);
}
else if(x >= 'D' && x <= 'Z')
{
x = (char) (x-3);blog
code.append(x);
}input
}
}
System.out.println(code);
源碼
}class
}import
4.結果截圖