import java.util.Scanner;
/**
*
* @author www.dadoubk.cn
*
*/
public class demo {
public static void main(String[] args) {
String A="ABCDEFGH";
int n=8;
int p=4;
System.out.println(mother(A, n, p));
}
private static String mother(String A, int n, int p) {
return A.substring(p+1)+A.substring(0, p+1);
}
}
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) | 黑马程序员IT技术论坛 X3.2 |