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
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
Biology,
15 days ago
English,
15 days ago
History,
1 month ago
Environmental Sciences,
1 month ago
Math,
9 months ago