JAVA 01x04: CALCULAR LA CANTIDAD DE DÍGITOS DE UN NUMERO ENTERO POSITIVO

CODIFICACIÓN:
package nro_dig;
import java.util.Scanner;
public class Nro_Dig {
    public static void main(String[] args) {
    // DECLARAR objeto TIPO sCANER        
    Scanner S = new Scanner(System.in);
    //Declarar variables
    int Nro,NroDig;
    // Leer Nro 
    System.out.print("Ingresa Nro:");
    Nro=S.nextInt();
    //Calcular la cantidad de digitos
    int res=Nro%10;
    NroDig=0;
    while (Nro>0)    {
        NroDig+=1;
        Nro=Nro/10;
    }
    //Escribir el numero de digitos
    System.out.println("Nro de Digitos = "+NroDig);
    }    
}
(PROGRAMACIÓN II - LABORATORIO 01 - ALGORITMO 04)

Comentarios

Entradas populares de este blog

JAVA 02x01: Calcular el promedio de notas y determinar el n° de notas mayores al promedio.(ESTRUCTURA DE DATOS:Arreglos)

JAVA 01x01: Promedio: Aprobado,Desaprobado, Reprobado