jueves, 2 de mayo de 2013

REALIZAR UN PROGRAMA QUE IMPRIMA EN PANTALLA DEL 1 AL 25


public class ejercicio10 {
    public static void main(String[] ar) {
        int x;
        x=1;
        while (x<=25) {
            System.out.print(x);
            System.out.print(" - ");
            x = x + 1;
        }
    }
}
http://www.youtube.com/watch?v=zo9zp-6BAIk

No hay comentarios:

Publicar un comentario