Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 1;
y_correct = '0001';
assert(isequal(bin2bcd(x),y_correct))
x =
1
y =
'0001'
|
2 | Pass |
x = 5;
y_correct = '0101';
assert(isequal(bin2bcd(x),y_correct))
x =
5
y =
'0101'
|
3 | Pass |
x = 12;
y_correct = '00010010';
assert(isequal(bin2bcd(x),y_correct))
x =
1 2
y =
'0001'
y =
'00010010'
|
4 | Pass |
x = 156;
y_correct = '000101010110';
assert(isequal(bin2bcd(x),y_correct))
x =
1 5 6
y =
'0001'
y =
'00010101'
y =
'000101010110'
|
15297 Solvers
519 Solvers
275 Solvers
There are 10 types of people in the world
310 Solvers
184 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!