Advertisement
Gamer536

Chisla

Nov 21st, 2019
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. <script src="https://zero.p2p.shpp.me/console.js"></script>
  2. <script>
  3. function newFunction(one, two, three) {
  4. var sum = one + two + three;
  5. if(sum > 0 && sum < 100) {
  6. document.write("1")
  7. } else if(one == two && two == three && one == three) {
  8. document.write("-1")
  9. } else {
  10. document.write(Math.max(one,two,three))
  11. }
  12. }
  13. newFunction(110,600,50)
  14. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement