Advertisement
Fhernd

Aplicación Sólo Texto

Sep 15th, 2011
203
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.26 KB | None | 0 0
  1. public class AplicacionSoloTexto
  2. {
  3.     public static void main( String args[] )
  4.     {
  5.         // imprime los números impares de 1 a 20
  6.         for( int i = 1; i <= 20; i += 2 )
  7.         {
  8.             System.out.println( i );
  9.         } // fin de for
  10.     } // fin del método main
  11. } // fin de la clase
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement