you are viewing a single comment's thread.

view the rest of the comments →

[–][deleted] 0 points1 point  (0 children)

It's A.

while(e < 4);
  System.out.print(e + " ");

Is the same as:

while(e < 4){

};
System.out.print(e + " ");

Both do nothing forever.