Home  >  Article  >  Web Front-end  >  Days of Code HackerRank using JAVASCRIPT DAY Operators

Days of Code HackerRank using JAVASCRIPT DAY Operators

PHPz
PHPzOriginal
2024-07-17 14:03:481111browse

Task
Given the meal price (base cost of a meal), tip percent (the percentage of the meal price being added as tip), and tax percent (the percentage of the meal price being added as tax) for a meal, find and print the meal's total cost. Round the result to the nearest integer.

Example

meal cost = 100
tip percentage = 15
tax percentage = 8
A tip of 15% * 100 = 15, and the taxes are 8% * 100 = 8. Print the value 123 and return from the function.

Function Description
Complete the solve function in the editor below.

solve has the following parameters:

int meal_cost: the cost of food before tip and tax
int tip_percent: the tip percentage
int tax_percent: the tax percentage
Returns The function returns nothing. Print the calculated value, rounded to the nearest integer.

SOLUTION

Image description

The above is the detailed content of Days of Code HackerRank using JAVASCRIPT DAY Operators. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn