Computer Science, asked by hardikn8293, 1 month ago

Write a programme to input product name, prize,(p) & quantity (q) calculate the following.
ta= p * q
dis= 20 % ofta
bill =ta–dis

Answers

Answered by pranavraswan
0

Answer:

using JavaScript:

let name = "product name";

let prize = 200;

let quan = 3;

let off = 20;

let dis = prize * quan * 20 / 100

let bill = prize * quan - dis

console.log(name + "-" + bill)

Explanation:

mark me as brainliest

Similar questions