Taxi fare calculation

Source: Internet
Author: User

3KM within 8 yuan
More than 3KM per km 1.2 yuan
More than 5KM per km 1.5 yuan
Calculate the fare according to the distance from the car

static void Main (string[] args)
{
while (true)
{
Double I,L, m1 = 8,m2=1.2,m3=1.5,m4=2.4;
Console.Write ("Please enter the distance by car:");
i = convert.todouble (Console.ReadLine ());
if (i>0&&i<=3)
{
Console.WriteLine ("Your Driving costs are:" +M1);
}
else if (i>3&&i<=5)
{
L = m1 + (i-3) * m2;
Console.WriteLine ("Your Driving costs are:" + L);
}
else if (i>5)
{
L = m1 + m4 + (i-5) * m3;
Console.WriteLine ("Your Driving costs are:" + L);
}
Else
{
Console.WriteLine ("Your input is wrong!") ");
}
}

}

Taxi fare calculation

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.