class TablesExcept
{
public static void main(String args[] )
{
int i,j;
TablesLabel :for(i=5;i<=10;i++)
{
for(j=1;j<=10;j++)
{
if(i==6) continue TablesLabel;
System.out.println(i + " x " + j + " = " + i*j);
}
}
}
}
By Dinesh Thakur
class TablesExcept
{
public static void main(String args[] )
{
int i,j;
TablesLabel :for(i=5;i<=10;i++)
{
for(j=1;j<=10;j++)
{
if(i==6) continue TablesLabel;
System.out.println(i + " x " + j + " = " + i*j);
}
}
}
}
Dinesh Thakur is a Freelance Writer who helps different clients from all over the globe. Dinesh has written over 500+ blogs, 30+ eBooks, and 10000+ Posts for all types of clients.
For any type of query or something that you think is missing, please feel free to Contact us.