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()))
|
312 Solvers
Project Euler: Problem 6, Natural numbers, squares and sums.
1018 Solvers
220 Solvers
238 Solvers
184 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!