Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x1 = 4;
x2 = 4;
h1 = 3;
y_correct = 6;
assert(isequal(findHeight(x1,x2,h1),y_correct))
ans =
6
|
2 | Pass |
x1 = 4;
x2 = 8;
h1 = 3;
y_correct = 9;
assert(isequal(findHeight(x1,x2,h1),y_correct))
ans =
9
|
3 | Pass |
x1 = 4;
x2 = 12;
h1 = 3;
y_correct = 12;
assert(isequal(findHeight(x1,x2,h1),y_correct))
ans =
12
|
4 | Pass |
x1 = 4;
x2 = 16;
h1 = 3;
y_correct = 15;
assert(isequal(findHeight(x1,x2,h1),y_correct))
ans =
15
|
5 | Pass |
x1 = 4;
x2 = 20;
h1 = 3;
y_correct = 18;
assert(isequal(findHeight(x1,x2,h1),y_correct))
ans =
18
|
6 | Pass |
x1 = 4;
x2 = 24;
h1 = 3;
y_correct = 21;
assert(isequal(findHeight(x1,x2,h1),y_correct))
ans =
21
|
7 | Pass |
x1 = 4;
x2 = 12;
h1 = 5;
y_correct = 20;
assert(isequal(findHeight(x1,x2,h1),y_correct))
ans =
20
|
8 | Pass |
x1 = 4;
x2 = 16;
h1 = 10;
y_correct = 50;
assert(isequal(findHeight(x1,x2,h1),y_correct))
ans =
50
|
9 | Pass |
x1 = 2;
x2 = 4;
h1 = 5;
y_correct = 15;
assert(isequal(findHeight(x1,x2,h1),y_correct))
ans =
15
|
10 | Pass |
x1 = 3;
x2 = 6;
h1 = 4;
y_correct = 12;
assert(isequal(findHeight(x1,x2,h1),y_correct))
ans =
12
|
1309 Solvers
1143 Solvers
489 Solvers
641 Solvers
484 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!