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))
c =
0
|
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))
c =
0
|
5 | Pass |
pudding = 1;
cookie = 4;
c_correct = 0;
assert(isequal(check_cal(pudding,cookie),c_correct))
c =
0
|
1800 Solvers
Make an awesome ramp for a tiny motorcycle stuntman
334 Solvers
147 Solvers
266 Solvers
74 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!