This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
a = 10;
b = 100;
c_correct = 10;
assert(isequal(percentage_is(a,b),c_correct))
ans =
10
|
2 | Pass |
%%
a = 10;
b = 50;
c_correct = 20;
assert(isequal(percentage_is(a,b),c_correct))
ans =
20
|
3 | Pass |
%%
a = 10;
b = 20;
c_correct = 50;
assert(isequal(percentage_is(a,b),c_correct))
ans =
50
|
4 | Pass |
%%
a = 8;
b = 32;
c_correct = 25;
assert(isequal(percentage_is(a,b),c_correct))
ans =
25
|
5 | Pass |
%%
a = 28;
b = 7;
c_correct = 400;
assert(isequal(percentage_is(a,b),c_correct))
ans =
400
|
2183 Solvers
All your base are belong to us
463 Solvers
Back to basics 25 - Valid variable names
293 Solvers
369 Solvers
find the surface area of a cube
336 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!