Java Classic Programming question 50-way 48

Source: Internet
Author: User

A company uses a public telephone to pass data, the data is a four-bit integer, is encrypted during delivery, encryption rules are as follows: Each digit is added 5, and then divided by the remainder of 10 instead of the number, and then the first and fourth exchange, the second and third exchange.

public class Example48 {
public static void Main (string[] args) {
f (2345);
}

public static void f (int num) {
Int[] C = new Int[4];
if (num > 999 && num < 10000) {
C[0] = num/1000;
C[1] = (num/100)% 10;
C[2] = (NUM/10)% 10;
C[3] = num% 10;
for (int j = 0; J < 4; J + +) {
C[J] + = 5;
C[J]%= 10;
}
for (int j = 0; J <= 1; j + +) {
int temp = C[j];
C[J] = C[3-j];
C[3-J] = temp;
}
System.out.print ("The number after encryption is:");
for (int j = 0; J < 4; J + +)
System.out.print (C[j]);
} else {
SYSTEM.OUT.PRINTLN ("The data transmitted is wrong, please retry!!!" ");
}
}
}

Java Classic Programming question 50-way 48

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.