The source code to get the current day number of the month using the strftime() method is given below. The given program is compiled and executed successfully.
# Ruby program to get the current day number
# of the month using strftime() method
time = Time.new();
DayOfMonth = time.strftime("%d");
print "Current day number of month is: ",DayOfMonth;
Output:
Current day number of month is: 04
Explanation:
In the above program, we created the object of the Time class. We got the current day of the month using the strftime() method with "%d" as an argument and printed the result.
Program/Source Code:
The source code to get the current day number of the month using the strftime() method is given below. The given program is compiled and executed successfully.
Output:
Explanation:
In the above program, we created the object of the Time class. We got the current day of the month using the strftime() method with "%d" as an argument and printed the result.
need an explanation for this answer? contact us directly to get an explanation for this answer