码迷,mamicode.com
首页 > 其他好文 > 详细

利用位运算简单实现加密运算

时间:2017-09-11 14:21:45      阅读:170      评论:0      收藏:0      [点我收藏+]

标签:print   enter   log   can   scan   结果   system   字符   style   

 1  public static void main(String[] args){
 2        Scanner scanner = new Scanner(System.in);
 3        System.out.println("please enter something:");
 4        String str = scanner.nextLine();
 5        char[] array = str.toCharArray(); //获取字符数组
 6         for (int i = 0; i<array.length;i++){
 7             array[i] = (char)(array[i]^2000);
 8         }
 9         System.out.println("加密结果:"+ new String(array));
10     }

 

利用位运算简单实现加密运算

标签:print   enter   log   can   scan   结果   system   字符   style   

原文地址:http://www.cnblogs.com/jjlyx/p/7504653.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!