English

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: - Computer Applications

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: 

  1. the total time taken by the driver
  2. 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?
Chapter 1.06: Input in Java - EXERCISES [Page 67]

APPEARS IN

Avichal Computer Applications [English] Class 10 ICSE
Chapter 1.06 Input in Java
EXERCISES | Q V. 5. | Page 67
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×