Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 464027
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T23:14:02+00:00 2026-05-12T23:14:02+00:00

Suppose a carpark charges a $2 minimum fee to park for up to 3

  • 0

Suppose a carpark charges a $2 minimum fee to park for up to 3 hours, then the carpark charges an additional $0.5 per hour for each hour. For example, park for 5 hours charge $2+$0.5+$0.5=$3

How should I calculate the fee use for loop?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-12T23:14:02+00:00Added an answer on May 12, 2026 at 11:14 pm

    There’s no need to use a for loop:

    function calculateFee(hours) {
        if (isNaN(hours) || hours <= 0) return 0;
        if (hours <= 3) return 2;
        var additionalHours = Math.round(hours - 3);
        return 2 + 0.5 * additionalHours;
    }
    
    var fee = calculateFee(5);
    

    And if using a for loop is a requirement:

    function calculateFee(hours) {
        if (isNaN(hours) || hours <= 0) return 0;
        var result = 2;
        if (hours <= 3) return result;
        var additionalHours = Math.round(hours - 3);
        for (i = 0; i < additionalHours; i++) {
            result += 0.5;          
        }
        return result;
    }
    

    And finally an example using objects:

    function FeeCalculator(minimalFee, initialHours, additionalHourFee) {
        if (isNaN(minimalFee) || minimalFee <= 0) { throw "minimalFee is invalid"; }
        if (isNaN(initialHours) || initialHours <= 0) { throw "initialHours is invalid"; }
        if (isNaN(additionalHourFee) || additionalHourFee <= 0) { throw "additionalHourFee is invalid"; }
        this.minimalFee = minimalFee;
        this.initialHours = initialHours;
        this.additionalHourFee = additionalHourFee;
    }
    
    FeeCalculator.prototype = {
        calculateFee: function(hours) {
            if (hours <= this.initialHours) return this.minimalFee;
            var additionalHours = Math.round(hours - this.initialHours);
            return this.minimalFee + this.additionalHourFee * additionalHours;          
        }
    };
    
    var calculator = new FeeCalculator(2, 3, 0.5);
    var fee = calculator.calculateFee(5);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Suppose we have the following documents: {{i:1},{i:9},{i:10}} {i:3} {{i:4},{i:0}} {{i:5},{i:-3},{i:30}} each line represents a
Suppose I receive an SMS from a contact. If I then extract their phone
Suppose , i have some x test-cases to be read from input, where each
Suppose that I have an n -sided loaded die, where each side k has
Suppose we have buyers and sellers that are trying to find each other in
Suppose I have: public class foobar { public int lorem; public int ipsum; }
Suppose we have the following table data: ID parent stage submitted 1 1 1
Suppose I have an IEnumerable such as a List(TValue) and I want to keep
Suppose, in MATLAB, that I have a matrix, A, whose elements are either 0
Suppose I have string Name and Image Photo as properties of a class in

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.