Hexadecimal to Octal

Write a program to convert a hexadecimal number to an octal number.

Example 1:

Input:5F
Output:137

Example 2:

Input:4AB
Output:2253

Approach

Java

public class HexadecimalToOctal {


    public static void main(String[] args) {
        String hexa = "5F";
        int decimal = hexaToDecimal(hexa);
        String octal = decimalToOctal(decimal);
        System.out.println("Octal is " + octal);
    }

    private static int hexaToDecimal(String hexa) {
        int n = hexa.length();
        int decimal = 0;
        for (int i = 0; i < n; i++) {
            if (Character.isDigit(hexa.charAt(i))) {
                int num = Integer.parseInt(String.valueOf(hexa.charAt(i)));
                decimal += Math.pow(16, n - i - 1) * num;
            } else {
                int num = (inthexa.charAt(i) - 55;
                decimal += Math.pow(16, n - i - 1) * num;
            }

        }
        return decimal;
    }

    public static String decimalToOctal(int decimal) {
        String octal = "";
        while (decimal > 0) {
            // calculate mode on base 8
            octal = decimal % 8 + "" + octal;
            decimal = decimal / 8;
        }

        return octal;

    }
}

C++

#include <bits/stdc++.h>
using namespace std;
//function to convert from hexadecimal to
//decimal
int hexadecimalToDecimal(string hexadecimal)
{
  int decimal=0;
  int n=hexadecimal.size();
  for(int i=0;i<n;i++)
   {
       //if hexadecimal[i]>='0'&&hexadecimal[i]<='9'
       if(hexadecimal[i]>='0'&&hexadecimal[i]<='9')
          {
              int num=hexadecimal[i]-'0';
              decimal=decimal+pow(16,n-i-1)*num;
          }
        //if hexadecimal[i]>='A'&&hexadecimal[i]<='F'
        else
         {
             int num=hexadecimal[i]-'A'+10;
             decimal=decimal+pow(16,n-1-i)*num;
         }
   }
   return decimal;
}
//function to convert from hexadecimal to
//octal
string hexadecimalToOctal(string hexadecimal)
{
    int decimal=hexadecimalToDecimal(hexadecimal);
    string octal="";
    while(decimal>0)
     {
        octal=to_string(decimal%8)+octal;
        decimal=decimal/8;   
     }
     return octal;
}
int main()
{
  string hexadecimal="5F";
  string octal=hexadecimalToOctal(hexadecimal);
  cout<<"Octal is ";
  cout<<octal<<"\n";
  return 0;
}


No comments:

Post a Comment