write the output int p=180;
while(true)
if(p<60)
break;
p=p-20;
System.out.println(p);
Answers
Answered by
1
Output is p=40.
Mark me brainlest
Answered by
0
Explanation:
output is p = 40
thank-you
Similar questions