Answer:
Answer:
10 people
14 cans wanted
total = 140/6 =23.333
10
Explanation:
//float value is 23.333;
var x = 23.3333;
var z = Math.round(x);
document.write("Converted value of " + x + " is " + z);
Output :
Converted value of 23.333 is 5
Explanation: