In this Day 1: Arithmetic operators 10 days of javascript hackerRank solutions you need to Complete the getArea(length, width) function that Calculate and return the area of a rectangle having sides length and width. and a getPerimeter(length, width) function that Calculates and returns the perimeter of a rectangle having sides length and width.
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 length and width.getPerimeter(length, width)
: Calculate and return the perimeter of a rectangle having sides length and width.
The values returned by these functions are printed to stdout by locked stub code in the editor.
Input Format
getArea
Data Type | Parameter | Description |
---|---|---|
Number | length | A number denoting the length of a rectangle. |
Number | height | A number denoting the height of a rectangle. |
getPerimeter(length, height)
Data Type | Parameter | Description |
---|---|---|
Number | length | A number denoting the length of a rectangle. |
Number | height | A number denoting the height of a rectangle. |
Constraints
- 1 <= length, width <= 1000
- length and width are scaled to at most three decimal places.
Output Format
Function | Return Type | Description |
---|---|---|
getArea | Number | The area of a rectangle having sides length and width. |
getPerimeter | Number | The perimeter of a rectangle having sides length and width. |
Sample Input 0
3
4.5
Sample Output 0
13.5
15
Explanation 0
The area of the rectangle is length x width = 3 x 4.5 = 13.5.
The perimeter of the rectangle is 2 x (length + width) = 2 x (3 + 4.5) = 15.
Day 1: Arithmetic operators 10 days of javascript hackerRank solutions
'use strict';
process.stdin.resume();
process.stdin.setEncoding('utf-8');
let inputString = '';
let currentLine = 0;
process.stdin.on('data', inputStdin => {
inputString += inputStdin;
});
process.stdin.on('end', _ => {
inputString = inputString.trim().split('\n').map(string => {
return string.trim();
});
main();
});
function readLine() {
return inputString[currentLine++];
}
/**
* Calculate the area of a rectangle.
*
* length: The length of the rectangle.
* width: The width of the rectangle.
*
* Return a number denoting the rectangle's area.
**/
function getArea(length, width) {
return length * width;
}
function getPerimeter(length, width) {
return 2 * (length + width);
}
function main() {
const length = +(readLine());
const width = +(readLine());
console.log(getArea(length, width));
console.log(getPerimeter(length, width));
}
NEXT – Day 1: Functions 10 days of javascript hackerRank solutions