Showing posts with label Decimal to Octal Conversion in Java. Show all posts
Showing posts with label Decimal to Octal Conversion in Java. Show all posts

Monday, 31 October 2016

Decimal to Octal Conversion in Java


package conversiontooct;

class A
{
    int i,x,y,z,c,d;
    int[] a=new int[100];
    int[] b=new int[100];
    
    A(int x)
            {
            
                this.x=x;
            }
    
    void displayNum()
    {
        i=0;
        
        while(x !=0)
        {
            y=x%8;
            z=x/8;
            a[i]=y;
            x=z;
            i++;
                        
        
        }
        
        for(c=i-1,d=0;c>=0;c--,d++)
        {
            b[d]=a[c];
            System.out.print(b[d]);
        }
         
         
         System.out.println();
    }

}



public class ConversiontoOct {
 
    
    public static void main(String[] args) {
        
        A a=new A(155);
        a.displayNum();

        A b=new A(156);
        b.displayNum();
       
    }
    
}