Ask Me Help Desk
>
Computers & Technology
>
Programming
>
Compiled Languages
>
Java
> What will be the output of the above loop?
Log in
View Full Version :
What will be the output of the above loop?
just_mohammad
Jan 31, 2012, 11:31 AM
Int num =50;
While (num >0)
{
System.out.println(“Count is “ num);
Num -=10;
}