exception is coming
import java.util.*;
public class Main {
public static void main(String args[]) {
Scanner sc = new Scanner(System.in);
int n = sc.nextInt();
int sum = 0;
for(int i=0;i<n;i++)
{
int j = sc.nextInt();
if(j!=0)
{
int rem = j % 10;
sum = sum + rem;
j = j / 10;
}
if(sum % 4 == 0)
{
System.out.println(“Yes”);
}
else if(sum % 3 ==0)
{
System.out.println(“Yes”);
}
else{
System.out.println(“No”);
}
}
}
}
help ASAP
Delhi odd even challenge
ok please Help ASAP with the exception
i dont know but now it is working in the CB IDE but still the output is coming NO YES