标签:ati 技术 回答问题 相同 答案 bsp print 代码 substr
代码:
public class Jishu {
public static void main(String[] args) {
String s = "";
for (int i = 0; i < 106; i++) {
for (int j = 0; j < 19; j++) {
s += (char)(j + ‘a‘);
}
}
f(s);
}
private static void f(String s) {
if(s.length()!=1){
String a = "";
for (int i = 1; i <s.length(); i++) {
a += s.substring(i,i+1);
i++;
}
f(a);
}else{
System.out.println(s);
}
}
}
标签:ati 技术 回答问题 相同 答案 bsp print 代码 substr
原文地址:http://www.cnblogs.com/-rainbow-/p/7749595.html