You need to calculate the flight time of an upcoming trip. You are flying from LA to Sydney, covering a distance of 7425 miles, | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

You need to calculate the flight time of an upcoming trip. You are flying from LA to Sydney, covering a distance of 7425 miles,

Help me

30th Jun 2022, 2:34 AM
CrAzY Gamer
CrAzY Gamer - avatar
3 Answers
+ 6
Speed = distance / time But We have to calculate time ⏰ ∴ time = distance / speed In python "Flight Time" code project Distance = 7425 miles Speed = 550 miles per hour ∴ time = 7425 / 550 # python code will be 👇 print (7425/550)
30th Jun 2022, 5:01 AM
Sujal
Sujal - avatar
+ 2
What is the speed? C# int miles=7425; int speed? double Time=miles/speed;
30th Jun 2022, 3:44 AM
Cristian Baeza Jimenez
Cristian Baeza Jimenez - avatar
+ 1
Ohh thanks 😊
30th Jun 2022, 3:46 AM
CrAzY Gamer
CrAzY Gamer - avatar