Question: What output is produced by the following code fragment? int low = 10, high = 0; do { System.out.println (low); low++; } while (low
What output is produced by the following code fragment?
int low = 10, high = 0;
do
{
System.out.println (low);
low++;
} while (low <= high);
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
