Q:

Ruby program to get the current weekday

belongs to collection: Ruby Date and Time Programs

0

In this program, we will get the current weekday number using the wday() method of Time class. Then we will print the current weekday based on the week number.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Program/Source Code:

The source code to get the current weekday is given below. The given program is compiled and executed successfully.

# Ruby program to get the current weekday

Weekday = ["SUNDAY","MONDAY","TUESDAY","WEDNESDAY","THURSDAY","FRIDAY","SATURDAY"];

date_time = Time.new();

curretDateTime = date_time.inspect();

weeknum  = date_time.wday();

print "Weekday is: ",Weekday[weeknum];

Output:

Weekday is: THURSDAY

Explanation:

In the above program, we created an array of weekdays and also created the object of Time class, and got the current weekday number using the wday() method. Then we got the weekday based on week number and print the result.

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Ruby Date and Time Programs

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
Ruby program to get the current time zone... >>
<< Ruby program to get the individual components of t...