What is the result of the following code snippet?
int i = 1;
while (i System.out.print(i + " ");
i++;
}
while (i System.out.print(i + " ");
i++;
}
What is the result of the following code snippet?int i = 1; Correct Answer 1 2 3 4 5
while (i System.out.print(i + " ");
i++;
}
মোঃ আরিফুল ইসলাম
Feb 20, 2025