Question: Identify the syntax error in the following while structure a) int k = 5; while ( k < 100) { System.out.println (k); k + +
Identify the syntax error in the following while structure
a) int k = 5;
while ( k < 100)
{ System.out.println (k);
k + +
}
b) int k = 0;
while ( k < 12; )
{ System.out.println (k);
k + + ;
}
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
