/**
* Multiplication table
*/
public class tables {
public static void main(String[] args) {
//print header
System.out.println("Multiplication Table:");
for (int k = 0; k <= 10; k++ )
{
for(int j = 0; j <= 10; j++)
{
System.out.print( (j * k ) + "\t" );
}
System.out.println("");
}
}
}
I always had a passion for the field of STEM (Science, Technology, Engineering, and Math) and I knew I wanted to do something to make a difference in the world. I just didn’t know where to start. I was an immigrant in a new country, grew up in a tough environment, and wasn’t sure how… Read More