JAVA 基础编程练习题48 程序 48 加密

Posted denggelin

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JAVA 基础编程练习题48 程序 48 加密相关的知识,希望对你有一定的参考价值。

 

48 【程序 48 加密】

题目:某个公司采用公用电话传递数据,数据是四位的整数,在传递过程中是加密的,加密 规则如下:每位数字都加上 5,然后用和除以 10 的余数代替该数字,再将第一位和第四位交 换,第二位和第三位交换。

 

package cskaoyan;

public class cskaoyan48 

	public static void main(String[] args) 
		// TODO Auto-generated method stub
		java.util.Scanner in = new java.util.Scanner(System.in);
		int number = 0;
		System.out.print("请输入四位数字:");
		number = in.nextInt();
		encode(number);
		in.close();
	

	private static void encode(int number) 
		int[] result = new int[4];
		int temp = 0;

		result[0] = number / 1000;
		result[1] = number % 1000 / 100;
		result[2] = number % 100 / 10;
		result[3] = number % 10;

		for (int i = 0; i < 4; i++) 
			result[i] += 5;
			result[i] %= 10;
		

		temp = result[0];
		result[0] = result[3];
		result[3] = temp;

		temp = result[1];
		result[1] = result[2];
		result[2] = temp;

		System.out.print("加密后的数字:");

		for (int i = 0; i < 4; i++) 
			System.out.print(result[i]);
		
	

 

以上是关于JAVA 基础编程练习题48 程序 48 加密的主要内容,如果未能解决你的问题,请参考以下文章

JAVA基础编程练习题

JAVA 基础编程练习题33 程序 33 杨辉三角

JAVA 基础编程练习题27 程序 27 求素数

JAVA 基础编程练习题36 程序 36 移动位置

JAVA 基础编程练习题18 程序 18 乒乓球赛

手写二叉树?程序员面试最常见问题TOP 48