Could you explain me howdoese it work?? I know the what this is going to do but
ID: 3611451 • Letter: C
Question
Could you explain me howdoese it work??I know the what this is going to do but I do want tounderstand how does it happen...
thank you in advance..
public class May11_05
{
public static voidmain(String[] args)
{
int i,j;
for(i = 0;i<10;i++)
{
for(j = i;j<10;j++)
System.out.print(".");
System.out.println();
}
}
} Could you explain me howdoese it work??
I know the what this is going to do but I do want tounderstand how does it happen...
thank you in advance..
public class May11_05
{
public static voidmain(String[] args)
{
int i,j;
for(i = 0;i<10;i++)
{
for(j = i;j<10;j++)
System.out.print(".");
System.out.println();
}
}
}