Weekday Name

I have provided a function that is supposed to return the name of a day of the week given the day number.

Files Needed

Use if and else to complete it according to the following table:

NumberDay of week
1 Sunday
2 Monday
3 Tuesday
4 Wednesday
5 Thursday
6 Friday
7 Saturday
0 Saturday
anything else"error"

What You Should See

 Weekday 1: Sunday Weekday 2: Monday Weekday 3: Tuesday Weekday 4: Wednesday Weekday 5: Thursday Weekday 6: Friday Weekday 7: Saturday Weekday 0: Saturday Weekday 43: error Weekday 17: error Weekday -1: error Today is a Wednesday! 
 

©2013 Graham Mitchell

This assignment is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 3.0 United States License.
Creative Commons License