Generate table of any number

01/01/2002 08:16

 

public class generatingtables
{
public static void main(String args[])
{
int x=95;
for (int a=1;a<=10;a=a+1)
{
int y=x*a;
System.out.println(y);
}
}
}