This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const total = 35852 // Цена всего | |
const night = total / 4 // Цена одной ночи | |
const withoutGosha = night / 3 // Цена для 1 участника, при условии что участников 3 | |
const withGosha = night / 4 // Цена для 1 участника, при условии что участников 4 | |
console.log( "Gosha: " + withGosha * 2 ) // Сколько Георгий должен за 2 ночи | |
console.log( "Other: " + ((withoutGosha * 2) + (withGosha * 2)) ) // Сколько должен каждый другой участник |