Zoj problem set-1813 biker's trip odometer

Source: Internet
Author: User

Time Limit: 2 seconds memory limit: 65536 KB

Most bicycle speedometers work by using a Hall effect sensor fastened to the Front fork of the bicycle. A magnet is attached to one of the spokes on the front wheel so that it will be up with the hall effect switch once per revolution of the wheel. the speedometer monitors the sensor to count wheel revolutions. if the diameter of the wheel is known, the distance traveled can be easily be calculated if you know how many revolutions the wheel has made. in addition, if the time it takes to complete the revolutions is known, the average speed can also be calculated.

For this problem, you will write a program to determine the total distance traveled (in miles) and the average speed (in miles per hour) Given the wheel diameter, the number of revolutions and the total time of the trip. you can assume that the front wheel never leaves the ground, and there is no slipping or skidding.

Input

Input consists of multiple datasets, one per line, of the form:

Diameter revolutions time

The diameter is expressed in inches as a floating point value. the revolutions is an integer value. the time is expressed in seconds as a floating point value. input ends when the value of revolutions is 0 (zero ).

Output

For each data set, print:

Trip # N: distance mph

Of course n shocould be replaced by the data set number, distance by the total distance in miles (accurate to 2 decimal places) and mph by the speed in miles per hour (accurate to 2 decimal places ). your program shocould not generate any output for the ending case when revolutions is 0.

Constants

For P use the value 3.1415927.
There are 5280 feet in a mile.
There are 12 inches in a foot.
There are 60 minutes in an hour.
There are 60 seconds in a minute.
There are 201.168 meters in a furlong.

Sample Input

26 1000 5
27.25 873234 3000
26 0 1000

Sample output

Trip #1: 1.29 928.20
Trip #2: 1179.86 1415.84

Source:Greater New York 2003

# Include <iostream>
 
# Include <iomanip>
 
Using NamespaceSTD;
 
 
Const DoublePi = 3.1415927;
 
 
 
IntMain (Void)
 
{
DoubleDiameter, revolutions, time;
 
IntTrip = 1;
 
While(CIN> diameter> revolutions> time & revolutions)
 
{
Cout <"Trip #"<Trip <":";
 
DoubleCIR = pI * diameter/(12*5280 );
 
DoubleDistance = CIR * revolutions;
 
 
Cout <Fixed<Setprecision (2) <distance <" ";
 
DoubleMph = distance/(Time/3600 );
 
Cout <Fixed<Setprecision (2) <mph <Endl;
 
Trip ++;
}
 
Return0;
 
}

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.