Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public class AplicacionSoloTexto
- {
- public static void main( String args[] )
- {
- // imprime los números impares de 1 a 20
- for( int i = 1; i <= 20; i += 2 )
- {
- System.out.println( i );
- } // fin de for
- } // fin del método main
- } // fin de la clase
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement