Find the output-
public class Test3 {
public static void main(String[] args)
{
int n = 15;
for(;;){}
while( n >= 0)
{
System.out.println(n--);
if(n==9)
break;
}
Answers
Answered by
1
Answer:
let's chat on whatsapp
Similar questions