Assignment
University
CollegeCourse
College Computer SciencePages
1
Academic year
2023
Avaiya Priyank
Views
0
p {margin: 0; padding: 0;} .ft00{font-size:21px;font-family:Caladea;color:#000000;} .ft01{font-size:16px;font-family:Carlito;color:#000000;} .ft02{font-size:21px;line-height:27px;font-family:Caladea;color:#000000;} .ft03{font-size:16px;line-height:21px;font-family:Carlito;color:#000000;} Q6. If I leave my house at 6:52 am and run 1 mile at an easy pace (8:15 per mile), then 3 miles at tempo (7:12 per mile) and 1 mile at an easy pace again, what time do I get home for breakfast? print("Leaving time is 6.52 AM") x = 6*3600 + 52*60 es = 8*60 + 15 ts = 7*60 + 12 total = (2*es + 3*ts + x)/3600 print(total); print("Here answer is coming 7.5 in numeric\n but if we consider it as time \nit can be considered as 7.30 ")
Morning Run Time Calculation for Breakfast Arrival
Please or to post comments