+ 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
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)
+ 2
What is the speed?
C#
int miles=7425;
int speed?
double Time=miles/speed;
+ 1
Ohh thanks đ