Garbage
God of Mistakes...
Hello Friends,
Here is the another assignment problem.
This time, I've to add 2 numbers without using + sign.
I got some solutions as ..
This works on paper ===>
So, this is the BINARY ADDITION.
But how I can implement it ???
I NEED LOGIC ONLY !!! NO PROGRAM PLEASE !!!
Here is the another assignment problem.
This time, I've to add 2 numbers without using + sign.
I got some solutions as ..
Code:
a+b = a - (-b) ====> This I don't want !!!
This works on paper ===>
Code:
1 1
a= 6 ==> 0 1 1 0
+
b=10==> 1 0 1 0
---------
c=16==> 1 0 0 0 0
But how I can implement it ???
I NEED LOGIC ONLY !!! NO PROGRAM PLEASE !!!