This solution is outdated. To rescore this solution, sign in.
V = pi .* (z .^ 2) .* a;
V=pi*z^2*a
function [V] = pizza_volume (z, a)
V = pi*a*z^2;
end
y=pi*z^2*a
good solution
Test | Status | Code Input and Output |
---|---|---|
1 | Fail |
z = 1;
a = 1;
v_correct = pi;
assert(isequal(pizza(z,a),v_correct))
|
2 | Fail |
z = 2;
a = 1;
v_correct = 4*pi;
assert(isequal(pizza(z,a),v_correct))
|
3 | Fail |
z = 1;
a = 2;
v_correct = 2*pi;
assert(isequal(pizza(z,a),v_correct))
|
4 | Fail |
z = 1;
a = 2;
v_correct = 2*pi;
assert(isequal(pizza(z,a),v_correct))
|
Determine whether a vector is monotonically increasing
11920 Solvers
1261 Solvers
Getting the indices from a vector
3207 Solvers
390 Solvers
Find out sum and carry of Binary adder
379 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!