Sunday, September 22, 2013

Filled Under: , , , , , ,

Program to iluustrate use of Break & Continue in java

Share

Code Box
--------------------
/*Program to print table of all odd numbers less than 10. Useing flowcontrol
terms  Break & Continue. */

class flowbc
{
public static void main(String r[])
{
int a,b;

for(a=1;;a++)
{

if(a>=10)
{ break;
}
else
if(a%2==0)
{continue;
}
else
{
for(b=1;b<=10;b++)
{
System.out.print("  "+b*a);
}

}

System.out.print("\n");
}
}
}


0 comments:

Post a Comment