Computer Applications
Find out the error(s) in the following code and underlining correct error(s).
int m = 5; n = 10;
while(n >= 1)
{
System.out.print("m");
n--;
}
Find out the error(s) in the following code and underlining correct error(s).
int m = 5; n = 10;
while(n >= 1)
{
System.out.print("m");
n--;
}