Problem 2678. Find out sum and carry of Binary adder
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
Jean-Marie Sainthillier
on 20 Nov 2014
You should maybe test all the truth table no ?
Gautam Rawat
on 18 Oct 2020
Some of the top solutions have made a solution only for test cases, This should be fixed.
Robert Wagner
on 31 Aug 2023
???
Solution Comments
Show commentsProblem Recent Solvers1485
Suggested Problems
-
Given an unsigned integer x, find the largest y by rearranging the bits in x
1821 Solvers
-
788 Solvers
-
562 Solvers
-
Calculate the Number of Sign Changes in a Row Vector (No Element Is Zero)
719 Solvers
-
501 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!