Day 1: Arithmetic Operators | Hackerrank Solution |10 Days Of Javascript
DAY 1: ARITHMETIC OPERATORS
HACKERRANK SOLUTION 10 DAYS OF JAVASCRIPT
Objective
In this challenge, we practice using arithmetic operators. Check out the attached tutorial for resources.
Task
Complete the following functions in the editor below:
getArea(length, width)
: Calculate and return the area of a rectangle having sides and .
getPerimeter(length, width)
: Calculate and return the perimeter of a rectangle having sides and .
The values returned by these functions are printed to stdout by locked stub code in the editor.
Input Format
Constraints
- and are scaled to at most three decimal places.
Output Format
Sample Input 0
3
4.5
Sample Output 0
13.5
15
Explanation 0
The area of the rectangle is .
The perimeter of the rectangle is .
Objective
In this challenge, we practice using arithmetic operators. Check out the attached tutorial for resources.
Task
Complete the following functions in the editor below:
getArea(length, width)
: Calculate and return the area of a rectangle having sides and .getPerimeter(length, width)
: Calculate and return the perimeter of a rectangle having sides and .
The values returned by these functions are printed to stdout by locked stub code in the editor.
Input Format
Constraints
- and are scaled to at most three decimal places.
Output Format
Sample Input 0
3
4.5
3
4.5
Sample Output 0
13.5
15
13.5
15
Explanation 0
The area of the rectangle is .
The perimeter of the rectangle is .
The perimeter of the rectangle is .
SHARE
If you find this useful, please share with your friends and Community.
CODE TOGETHER..GROW TOGETHER.
CODE TOGETHER..GROW TOGETHER.
Newer Posts
Newer Posts
Older Posts
Older Posts
Comments