Guest User

Untitled

a guest
Jan 13th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. document.write("ID Test Scores "+"</br>");
  2. for (i=0; i<size; i++)
  3. {
  4. document.write(ar[i][0]+" ");
  5. var lowest = ar[i][1];
  6. for (j=1; j>=num_test; j++)
  7. { document.write(ar[i][j] + " ");
  8. if (lowest>ar[i][j])
  9. lowest= ar[i][j];
  10. }
  11. document.write(" Lowest score is " + Lowest+ "</br>");
Add Comment
Please, Sign In to add comment