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

【程序48】

时间:2018-10-24 00:57:29      阅读:153      评论:0      收藏:0      [点我收藏+]

标签:exti   string   传递数据   lan   com   key   +=   数字   正整数   

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


import java.util.*;

public class lianxi48   { 

    public static void main(String args[]) { 

    Scanner s = new Scanner(System.in);

    int num=0,temp;

    do{

        System.out.print("请输入一个4位正整数:");

        num = s.nextInt();

    }while (num<1000||num>9999); 

    int a[]=new int[4]; 

    a[0] = num/1000; //取千位的数字 

    a[1] = (num/100)%10; //取百位的数字 

    a[2] = (num/10)%10; //取十位的数字 

    a[3] = num%10; //取个位的数字 

    for(int j=0;j<4;j++) 

    { 

        a[j]+=5; 

        a[j]%=10; 

    } 

    for(int j=0;j<=1;j++) 

    { 

        temp = a[j]; 

        a[j] = a[3-j]; 

        a[3-j] =temp; 

    } 

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

    for(int j=0;j<4;j++) 

        System.out.print(a[j]); 

    } 

}

【程序48】

标签:exti   string   传递数据   lan   com   key   +=   数字   正整数   

原文地址:https://www.cnblogs.com/yuyu666/p/9840259.html

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