Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 100;
y_correct = 0;
assert(isequal(last_digit(x),y_correct))
ans =
0
|
2 | Pass |
x = 103;
y_correct = 3;
assert(isequal(last_digit(x),y_correct))
ans =
3
|
3 | Pass |
x = 55958;
y_correct = 8;
assert(isequal(last_digit(x),y_correct))
ans =
8
|
4 | Pass |
x = 6165451646465;
y_correct = 5;
assert(isequal(last_digit(x),y_correct))
ans =
5
|
given 3 sides, find area of this triangle
680 Solvers
Magic is simple (for beginners)
2749 Solvers
Convert given decimal number to binary number.
636 Solvers
Matlab Basics - Set unwanted parts of a vector to zero
197 Solvers
134 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!