Can someone explain this code please
I cant understand what will print out...
Please note that i dont want to run it on a program, i would like to understand it.
for (int x=13; x<20; x+=3){
int z=x-8;
for (int y=x; y>z; y-=2)
System.out.print(y+" ");
System.out.println(x);
}
Thanks