标签:
package test; import java.util.*; //引用util包 public class Caesar { public static void main(String[] args) { // TODO Auto-generated method stub Scanner a = new Scanner(System.in); //初始化Scanner String cipher,result; //创建字符串 System.out.println("输入英文字符串:"); //输出提示字 cipher = a.nextLine();//输入 result = "";//初始化字符串 int i ; for(i=0 ; i<cipher.length();i++){ //循环字符串的长度次 result += (char)(cipher.charAt(i)+3); //把字符串中每个字符取出,并后移,最后连接 } System.out.println("加密后为:"+result);//输出 } }
运行结果:
标签:
原文地址:http://www.cnblogs.com/xiaosongbiog/p/4905109.html