Last active
July 20, 2022 17:30
-
-
Save MRLokop/d3f657d4f3d654f7da1806bd433d6ef2 to your computer and use it in GitHub Desktop.
Калькулятор цены с условием Гоши
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)) ) // Сколько должен каждый другой участник | |
// other * 3 - цена за 4 ночь | |
// gosha - цена за 2 ночи |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Я отношусь к Other 🤬🤬🤬🤬