24. What is the output of this code sequence?
for (int i = 0; i < cities.length; i++ )
{
for ( int j = 0; j < cities[i].length; j++ )
{
if ( cities[i][j] .charAt( 0 ) == 'S' )
System.out.println( cities[i][j] );
} }
The output will be table of city with name starts with letter 'S'.
Need a fast expert's response?
Submit order
and get a quick answer at the best price
for any assignment or question with DETAILED EXPLANATIONS!
Learn more about our help with Assignments:
JavaJSPJSF