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

 What is the output of the below code snippet?

int a = 10;
do {
    a = a + 1;
    System.out.print(a + " ");
} while (a < 15);