public class WhatsItDo {
public static void main ( ) {
mystryMethod ( 10 ) ;
}
public static void mystryMethod ( int n ) { //< 1) What does this methode do?
for ( int x = 2 ; x < n ; x++ ) { //< 2) What does this line do?
for ( int y = 2 ; y < 100 ; y++ ) { //< 3) What does this line do?
if ( x % y == 0 ) { //< 4) What does this line do?
if ( x == y ) { //< 5) What does this line do?
System.out.println ( x ) ;
}
break;
}
}
}
}
}