Answer to Question #199618 in HTML/JavaScript Web Application for venkateswara rao k

Question #199618

SERIES OF OPERATIONS

myArray of numbers, write a JS program to perform the following steps and log the result.

Multiply each value with 9.

Subtract 20 from each value.

Multiply each value with 7.

Log the values of the resulting array separated by a space.

Input

The input will be a single line containing an array myArray

Output

The output should be a single line with values separated by a space

Constraints

Each value in the array must be a number

Sample Input

[ 12, 2, 2, 4, 1 ]

Sample Output

616 -14 -14 112 -77

"use strict";

process.stdin.resume();

process.stdin.on("data", (inputStdin) => {

  inputString += inputStdin;

});

process.stdin.on("end", (_) => {

  inputString = inputString.trim().split("\n").map((str) => str.trim());

  main();

});

function readLine() {

  return inputString[currentLine++];

}

function main() {

  const myArray = JSON.parse(readLine());

  /* Write your code here */

}


1
Expert's answer
2021-05-27T19:08:02-0400
function main() {

  const myArray = JSON.parse(readLine());

  /* Write your code here */
  for (int i = 0; i < myArray.length; i++) {
    myArray[i] = (myArray[i] * 9 - 20) * 7;
    console.log(myArray[i] + ' ')
  }
}

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
New on Blog
APPROVED BY CLIENTS