多选题
Given:
2. public class Coyote {
3. public static void main(String[] args)
4. int x = 4;
5. int y = 4;
6. while((x = jump(x)) < 8)
7. do {
8. System.out.print(x + " ");
9. } while ((y = jump(y)) < 6);
10. }
11. static int jump(int x) {return ++x; }
12. }
What is the result?