Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 1;
y_correct = pi * 0.25;
assert(isequal(areaOfCircle(x),y_correct))
|
2 | Pass |
x = 15;
y_correct = pi * 56.25;
assert(isequal(areaOfCircle(x),y_correct))
|
3 | Pass |
x = 20;
y_correct = pi * 100;
assert(isequal(areaOfCircle(x),y_correct))
|
4 | Pass |
x = 100;
y_correct = pi * 2500;
assert(isequal(areaOfCircle(x),y_correct))
|
1727 Solvers
find the maximum element of the matrix
349 Solvers
219 Solvers
326 Solvers
Create vector as shown in test cases
203 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!