/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package problema42dadounrangodenumerosenterosobtenerlacantidaddenumerosenterosquecontiene;
import java.util.Scanner;
/**
*
*/
public class PROBLEMA42DADOUNRANGODENUMEROSENTEROSOBTENERLACANTIDADDENUMEROSENTEROSQUECONTIENE {
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
int i, ni,nf,c=0;
Scanner teclado=new Scanner(System.in);
System.out.println("Número Inicial: " );
ni=teclado.nextInt();
System.out.println("Número Final: " );
nf=teclado.nextInt();
i=ni+1;
while (i<nf)
{
c+=1;
i++;
}
System.out.println(" " );
System.out.println("Cantidad: "+c);
}
}
No hay comentarios:
Publicar un comentario