This code has been done in textpad and I'm wondering.
How do i move all the text to the right when i press Ctrl+2 so it looks nicer?
public class Ovning2_6
{
public static void main(String args[])
{
for (int i=1; i<=12; i++) //Start ; villkor; öka antal steg
{
System.out.print("\n"+i);
for (int j=1; j <=12; j++)
{
int k=i*j;
System.out.print("\t"+k);
}
System.out.println( );
System.out.println( );
}
}
}
How do I move the text to the right In cmd?
Moderators: AmigoJack, bbadmin, helios, MudGuard