KnowledgeBoat Logo

Computer Science

Write a program to take two inputs for day, month and then calculate which day of the year, the given date is. For simplicity, take 30 days for all months. For example, if you give input as: Day3, Month2 then it should print "Day of the year : 33".

Python

Python Data Handling

41 Likes

Answer

d = int(input("Enter day: "))
m = int(input("Enter month: "))

n = (m - 1) * 30 + d

print("Day of the year:", n)

Output

Enter day: 3
Enter month: 2
Day of the year: 33

Answered By

19 Likes


Related Questions