Skip to content

Instantly share code, notes, and snippets.

@MRLokop
Last active July 20, 2022 17:30
Show Gist options
  • Save MRLokop/d3f657d4f3d654f7da1806bd433d6ef2 to your computer and use it in GitHub Desktop.
Save MRLokop/d3f657d4f3d654f7da1806bd433d6ef2 to your computer and use it in GitHub Desktop.
Калькулятор цены с условием Гоши
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 ночи
@MRLokop
Copy link
Author

MRLokop commented Jul 20, 2022

а @NovaStream2030 нет

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment