Question: When I use the code for Def in the 2 nd line it tells me no function exists. What is the bottom line code for

When I use the code for Def in the 2nd line it tells me no function exists. What is the bottom line code for this?
Write code in MinutesToHours that assigns resultHours with minsToConvert divided by 60
Function MinutesToHours(float minsToConvert) returns f Variables
// Calculate resultHours:
resultHours =0
Not shown when editing
Function Main() returns nothing
float userMins
float resultHours
userMins = Get next input
resultHours = MinutesToHours(userMins)
Put userMins to output
Put " minutes are " to output
Put resultHours to output
Put " hours." to output
Line 2: Function's return value not used
When I use the code for Def in the 2 nd line it

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!