50 typical Java programming questions, 50 java programming questions

Source: Internet
Author: User

50 typical Java programming questions, 50 java programming questions

There are n integers, so that the previous numbers are shifted to the next m positions, and the last m number is changed to the first m number.

Public class Example36 {
Public static void main (String [] args ){
Int [] m = {18, 12, 23, 34, 95, 76, 57, 28, 9 };
MoveElement (m, 5 );
}

Public static void moveElement (int [] m, int n ){
System. out. print ("the array before the shift is :");
For (int r: m ){
System. out. print (r + "");
}

If (n <= m. length ){
Int [] B = new int [m. length];
For (int I = 0; I <m. length-n; I ++ ){
B [I + n] = m [I];
}
Int j = 0;
For (int I = m. length-n; I <m. length; I ++ ){
B [j] = m [I];
J ++;
}

System. out. print ("\ n move" + n + "The following array is :");
For (int r: B ){
System. out. print (r + "");
}
} Else {
System. out. print ("\ n moving error! ");
}
}
}

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.