public class sequence {
public static void main(String args[]){
char[] c = {'a','x','c','e'};
char[] t = {'x','b'};
int count = 0,j;
for(int i=0;i<(c.length);i++)
{
int p = i;
int x = 0;
for( j=0;j<(t.length);j++){
if(c[p]!=c[j]){
break;
}
else
x++;
System.out.print(x);
if(x==((t.length))){
count++;
}
p++;
}
System.out.print('a');
}
System.out.println("Number of Occurences " + count);
}
}
私の仕事は、シーケンス、つまり t[] がマザー配列 c[] で発生する回数を数えることです。頭の中ですべての繰り返しを試しても、必要な結果を得ることができません。私はプログラミングの初心者なので、ここで助けが必要です。ありがとう!