|
|
|
|
Top Topics in our Forum';
|
|
|
Hexadecimal, Binary Calculator Project
Objective : To create a calculator that performs the four main operations with numbers in binary octal, decimal or, hexadecimal.
Source File: HexBinCalculator.java
Requirements of the project:
Project Requirements
Note: Java, like most languages, has some built in support that do all of the conversions for you.(Integer.toBinaryString(myInt) is just one) Using any built in method like toBinaryString is not a legal way of completing this project since one of the goals is to become more proficient at and gain a deeper undestanding of converting numbers from one base to another.
You must come up with your own algorithm that converts numbers from decimal to binary.
Top |