Está en la página 1de 1

/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package numero.

pkg4; import java.util.*; /** * * @author delga_000 */ public class Numero4 { /** * @param args the command line arguments */ public static void main(String[] args) { int n; Scanner al=new Scanner(System.in); do{ System.out.print("Ecribe un numero menor que100: "); n=al.nextInt(); }while(n<=100); System.out.print("Ha introducido " +n); } }

También podría gustarte