Can you please tell the error in the code

import java.util.*;
public class Main
{
public static void main(String arr[])throws Exception
{
Scanner sc=new Scanner(System.in);
int T=sc.nextInt();
int i,j;
int n,k;
String s[]=new String[T];
for(i=0;i<T;i++)
{
n=sc.nextInt();
k=sc.nextInt();
if(k<=n)
{
int a[]=new int[n];
int temp=0;
boolean e=false;
for(j=0;j<n;j++)
{
a[j]=sc.nextInt();
}
j=0;
while(j<=(n-k))
{
for(temp=j;temp<j+k;temp++)
{
if((a[temp]%2)==0)
{
e=true;
}
else
{e=false;
break;
}
}
if(e==true)
break;
else
j++;
}
if(e==true)
s[i]=“YES”;
else
s[i]=“NO”;
}
else
break;
}
for(i=0;i<T;i++)
System.out.println(s[i]);

}

}

what’s wrong with your code is you made it unreadable and impossible to even look at