package corejava;
public class Ke {
public static void main(String[] args) {
// 找出abc在字符串s中的所有排列方式
String s = "aanbfcujhaderbciyc";
String a = "abc";
char[] a1 = a.toCharArray();
char[] ss = s.toCharArray();
System.out.println((a1[0]==ss[0]));
for(int j=0;j<ss.length;j++){
if('a'==ss[j]){
for(int k=j;k<ss.length;k++){
if('b'==ss[k]){
for(int l=k;l<ss.length;l++){
if('c'==ss[l]){
System.out.print(j+1+" "+(k+1)+" "+(l+1)+"\n");
}
}
}
}
}
}
}
}
public class Ke {
public static void main(String[] args) {
// 找出abc在字符串s中的所有排列方式
String s = "aanbfcujhaderbciyc";
String a = "abc";
char[] a1 = a.toCharArray();
char[] ss = s.toCharArray();
System.out.println((a1[0]==ss[0]));
for(int j=0;j<ss.length;j++){
if('a'==ss[j]){
for(int k=j;k<ss.length;k++){
if('b'==ss[k]){
for(int l=k;l<ss.length;l++){
if('c'==ss[l]){
System.out.print(j+1+" "+(k+1)+" "+(l+1)+"\n");
}
}
}
}
}
}
}
}