Public Class Two - Table

You might also like

Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

class two_table

{
public static void main(String[] args)
{
int i;
for (i=0;i<=20;i+=2)
{
System.out.println(i);
}

}
}

You might also like