Program to split of a 4 digit number

/*  Program to split of a 4 digit number */

class P7
{
    public static void main(String args[])
    {
        int x = 1234, y, z;

        y = x /1000 ;
        System.out.println(" The digit in the Thousand's place =  "+y);

        z = x % 1000;
        y = z /100;
        System.out.println("\n The digit in the Hundred's place =  "+y);

        z = z % 100;
        y = z / 10;
        System.out.println("\n The digit in the Ten's place =  "+y);

        y = z % 10;
        System.out.println("\n The digit in the Unit's place =  "+y);
              
      }
}

0 comments:

Post a Comment

 
 
 
 


Copyright © 2012 http://codeprecisely.blogspot.com. All rights reserved |Term of Use and Policies|