Java - Do While Statement

  1. import java.io.*;    
  2.     
  3. class ssvdowhile    
  4.  {    
  5.    public static void main(String arg[]) throws IOException    
  6.     {    
  7.       String t;    
  8.       int c,n;    
  9.       c=0;    
  10.              
  11.       DataInputStream dr = new DataInputStream(System.in);    
  12.     
  13.       System.out.print("Enter a whole Number : ");    
  14.       t = dr.readLine();    
  15.       n = Integer.parseInt(t);    
  16.       
  17.     do{    
  18.          n = n/10;    
  19.          c = c+1;    
  20.        }while(n != 0);    
  21.     
  22.       System.out.println("\nThe given Number is a " + c + " Digit Number");    
  23.    }    
  24.  }