It looks like you're using an Ad Blocker.
Please white-list or disable AboveTopSecret.com in your ad-blocking tool.
Thank you.
Some features of ATS will be disabled while you continue to use an ad-blocker.
if (x < 10 )
if (y > 10)
System.out.println( "*****" );
else
System.out.println( "#####" );
System.out.println( "$$$$$");
if (x < 10 )
[
if (y > 10)
System.out.println( "*****" );
]
else
[
System.out.println( "#####" );
System.out.println( "$$$$$");
]
if(some test = true)
This line is executed if the test is true;
This line is executed no matter what.
if(some test = true)
[
this line is executed if the test is true;
this line also is executed only if the test is true;
]