Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
z = 1;
a = 1;
v_correct = pi;
assert(isequal(pizza(z,a),v_correct))
y =
3.1416
|
2 | Pass |
z = 2;
a = 1;
v_correct = 4*pi;
assert(isequal(pizza(z,a),v_correct))
y =
12.5664
|
3 | Pass |
z = 1;
a = 2;
v_correct = 2*pi;
assert(isequal(pizza(z,a),v_correct))
y =
6.2832
|
4 | Pass |
z = 2;
a = 2;
v_correct = 8*pi;
assert(isequal(pizza(z,a),v_correct))
y =
25.1327
|
What is the next step in Conway's Life?
639 Solvers
401 Solvers
Solve the set of simultaneous linear equations
273 Solvers
584 Solvers
Set some matrix elements to zero
290 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!