The algorithm given below does not take any parameter to print the number of days in a year, instead all the parameters where statically included as given in the exercise.
//We started by given the function a number with no return type since we //just want to print something
def printNumberOfMinutesInOneYear ( ):
int oneYear = 365;
int oneDay = 24;
int oneHour = 60
int oneYeatInMinutes = oneYear*oneDay*oneHour
print(The number of minutes in a year is oneYeatInMinutes)
Learn more about Python Programming Language here:
https://brainly.com/question/24661996