Of course, c = a+b; is entirely correct, using the operator form for addition. plus(a,b) uses the function form.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
a = 1;
b = 2;
c_correct = 3;
assert(isequal(add_two_numbers(a,b),c_correct))
|
2 | Pass |
%%
a = 17;
b = 2;
c_correct = 19;
assert(isequal(add_two_numbers(a,b),c_correct))
|
3 | Pass |
%%
a = -5;
b = 2;
c_correct = -3;
assert(isequal(add_two_numbers(a,b),c_correct))
|
Make an awesome ramp for a tiny motorcycle stuntman
334 Solvers
Return unique values without sorting
588 Solvers
Find nearest prime number less than input number
268 Solvers
Height of a right-angled triangle
448 Solvers
299 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!