Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
F = 95;
C_correct = 35;
assert(isequal(fahren2celsius(F),C_correct))
C =
35
|
2 | Pass |
F = 41;
C_correct = 5;
assert(isequal(fahren2celsius(F),C_correct))
C =
5
|
3 | Pass |
F = 41;
C_correct = 5;
assert(isequal(fahren2celsius(F),C_correct))
C =
5
|
4 | Pass |
F = 59;
C_correct = 15;
assert(isequal(fahren2celsius(F),C_correct))
C =
15
|
831 Solvers
Given an unsigned integer x, find the largest y by rearranging the bits in x
780 Solvers
253 Solvers
5465 Solvers
286 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!