Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x = 10;
y_correct = 18;
assert(isequal(if_then_else(x),y_correct))
ans =
18
|
2 | Pass |
%%
x = 14;
y_correct = 18;
assert(isequal(if_then_else(x),y_correct))
ans =
18
|
3 | Pass |
%%
x = 11;
y_correct = 18;
assert(isequal(if_then_else(x),y_correct))
ans =
18
|
4 | Pass |
%%
x = 12;
y_correct = 18;
assert(isequal(if_then_else(x),y_correct))
ans =
18
|
5 | Pass |
%%
x = 13;
y_correct = 18;
assert(isequal(if_then_else(x),y_correct))
ans =
18
|
6 | Pass |
%%
x = 9;
y_correct = 7;
assert(isequal(if_then_else(x),y_correct))
ans =
7
|
7 | Pass |
%%
x = 15;
y_correct = 7;
assert(isequal(if_then_else(x),y_correct))
ans =
7
|
8 | Pass |
%%
x = 0;
y_correct = 7;
assert(isequal(if_then_else(x),y_correct))
ans =
7
|
9 | Pass |
%%
x = 100;
y_correct = 7;
assert(isequal(if_then_else(x),y_correct))
ans =
7
|
10 | Pass |
%%
x = -2;
y_correct = 7;
assert(isequal(if_then_else(x),y_correct))
ans =
7
|
Which values occur exactly three times?
3304 Solvers
735 Solvers
Who is the smartest MATLAB programmer?
469 Solvers
07 - Common functions and indexing 4
258 Solvers
739 Solvers