79397501

Date: 2025-01-29 16:49:58
Score: 1
Natty:
Report link
int count = 0;
    for(int i = 0; i < arr.length; i++) {
        String s = Integer.toString(arr[i]);
        String[] ss = s.split("");
        if (ss.length % 2 == 0) {
            count++;
        }
    }
    System.out.println("Total Even number:"+count);
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Shrid