Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
today = java.util.Date;
c = java.util.Calendar.getInstance();
c.setTime( today );
dayOfWeek = c.get(java.util.Calendar.DAY_OF_WEEK);
switch dayOfWeek
case 1
dayOfWeek = 'Sunday';
case 2
dayOfWeek = 'Monday';
case 3
dayOfWeek = 'Tuesday';
case 4
dayOfWeek = 'Wednesday';
case 5
dayOfWeek = 'Thursday';
case 6
dayOfWeek = 'Friday';
case 7
dayOfWeek = 'Saturday';
end
assert(strcmp(dayOfWeek,day_of_week()))
dd =
Monday
|
284 Solvers
Arrange vector in ascending order
624 Solvers
232 Solvers
07 - Common functions and indexing 1
338 Solvers
Convert given decimal number to binary number.
638 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!