Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
pudding = 1;
cookie = 2;
c_correct = 1;
assert(isequal(check_cal(pudding,cookie),c_correct))
|
2 | Pass |
pudding = 2;
cookie = 2;
c_correct = 0;
assert(isequal(check_cal(pudding,cookie),c_correct))
|
3 | Pass |
pudding = 0;
cookie = 6;
c_correct = 1;
assert(isequal(check_cal(pudding,cookie),c_correct))
|
4 | Pass |
pudding = 0;
cookie = 7;
c_correct = 0;
assert(isequal(check_cal(pudding,cookie),c_correct))
|
5 | Pass |
pudding = 1;
cookie = 4;
c_correct = 0;
assert(isequal(check_cal(pudding,cookie),c_correct))
|
9824 Solvers
Celsius to Fahrenheit converter
388 Solvers
420 Solvers
583 Solvers
992 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!