Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
A = 400;
y_correct = 20;
assert(isequal(findside(A),y_correct))
ans =
20
|
2 | Pass |
A = 144;
y_correct = 12;
assert(isequal(findside(A),y_correct))
ans =
12
|
3 | Pass |
A = 225;
y_correct = 15;
assert(isequal(findside(A),y_correct))
ans =
15
|
4 | Pass |
A = 256;
y_correct = 16;
assert(isequal(findside(A),y_correct))
ans =
16
|
given 3 sides, find area of this triangle
680 Solvers
338 Solvers
401 Solvers
248 Solvers
284 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!