الرجوع
تسجيل الدخول

What is the output of the following code?

double[] marks = {73, 68, 86, 81, 60};
double sum = 0;

for (int i = 0; i < marks.length; i++) {
  sum += marks[i];
}

System.out.print(color[1]);