Find out sum and carry of a binary adder if previous carry is given with two bits (x and y) for addition.
Examples
Previous carry is 1 and x=y=1. Addition is 1 and carry is also 1.
Previous carry is 0 and x=y=1. Addition is 0 and carry is also 1.
Previous carry is 0 and x=1, y=0. Addition is 1 and carry is also 0.
Solution Stats
Problem Comments
3 Comments
Solution Comments
Show comments
Loading...
Problem Recent Solvers1698
Suggested Problems
-
Find the sum of the elements in the "second" diagonal
1204 Solvers
-
Return unique values without sorting
999 Solvers
-
Generate N equally spaced intervals between -L and L
943 Solvers
-
We love vectorized solutions. Problem 1 : remove the row average.
884 Solvers
-
2529 Solvers
More from this Author70
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
You should maybe test all the truth table no ?
Some of the top solutions have made a solution only for test cases, This should be fixed.
???