Question: Write a program in C, C++ or Java that converts decimal numbers to binary, hexadecimal, and BCD. You are not allowed to use library functions
Write a program in C, C++ or Java that converts decimal numbers to binary, hexadecimal, and BCD. You are not allowed to use library functions for conversion. You have to implement the algorithms that we have covered. The output should look as follows: DECIMAL BINARY HEXDECIMAL BCD 0 0000 0000 00 0000 0000 0000 1 0000 0001 01 0000 0000 0001 2 0000 0010 02 0000 0000 0010 . . . . . . . . 255 1111 1111 FF 0010 0101 0101
OUTPUT MUST OUTPUT INTO SEPERATE TXT FILE.
THIS PROGRAM HAS NO INPUT FROM USER.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
