This solution is outdated. To rescore this solution, sign in.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 1; n = 10;
y_correct = 55;
assert(isequal(your_fcn_name(x,n),y_correct))
|
2 | Pass |
x = 0.1; n = 5;
y_correct = 0.12345;
assert(isequal(your_fcn_name(x,n),y_correct))
|
3 | Pass |
filetext = fileread('your_fcn_name.m');
assert(isempty(strfind(filetext, 'for')),'for forbidden')
assert(isempty(strfind(filetext, 'while')),'while forbidden')
|
Try 1.5.4: Celsius to Fahrenheit
609 Solvers
511 Solvers
450 Solvers
372 Solvers
Is this triangle right-angled?
2874 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!