I would like someone to help me on this and kindly explain it me. It's not only the answer that I want but I want to understand it as well. I did my research but it seems that I cannot find the answer similar or related to the question I posted. I am not really good with programming but I would like to know and to learn more how this goes.
|
closed as not a real question by Kirk Woll, Don Roby, Robin, Mark Rotteveel, evilone Nov 25 '12 at 18:27
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
|
In Java the standard way of doing this would be
Although this is written in Java, a similar approach can be taken in pretty much any language. This is what
where
|
|||||
|
|
This link describes an algorithm for converting from base 10 to binary - http://chortle.ccsu.edu/assemblytutorial/zAppendixH/appH_4.html |
|||
|
|
For Java, go through the API and read up on Integer. There is already a method that can do this for you, called http://docs.oracle.com/javase/7/docs/api/java/lang/Integer.html#toBinaryString(int) |
|||
|
|
for c#:
if you want algorithm in c++:
|
|||||
|

