79725334

Date: 2025-08-04 19:57:26
Score: 1
Natty:
Report link
int[] marks = {78, 85, 90, 60, 99};
int maxNum = 0;
for (int i = 0; i < marks.length; i++){
    if (maxNum< marks[i]){
        maxNum = marks[i];
    }
}
System.out.println(maxNum);
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Omar Faruq