Advertisements
Advertisements
Question
The driver took a drive to a town 240 km at a speed of 60 km/h. Later in the evening, he drove back at 20 km/h less than the usual speed. Write a program to calculate:
- the total time taken by the driver
- the average speed during the whole journey
[Hint: average speed = `"total distance"/"total time"`]
Answer in Brief
Solution
public class U5_Q5
{public static void main(String ag[])
{double dist = 240, t1, t2, tot, spd = 60, avgspeed;
t1 =dist / spd; // time = distance / speed
t2 = dist / (spd − 20); // since speed was decreased by 20 km/h
tot = t1 + t2;
avgspeed = (2 * dist) / tot; // avg speed= total dist / total time
System.out.println("The total time for the journey: " + tot);
System.out.println("The average speed for the journey: " + avgspeed);
}}
shaalaa.com
Is there an error in this question or solution?