Advertisement
Spocoman

Oscars ceremony

Oct 11th, 2024
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Go 0.29 KB | None | 0 0
  1. package main
  2.  
  3. import "fmt"
  4.  
  5. func main() {
  6.     var hallRent int
  7.     fmt.Scanln(&hallRent)
  8.    
  9.     statues := float64(hallRent) * 0.7
  10.     catering := statues * 0.85
  11.     soundSystem := catering / 2
  12.  
  13.     fmt.Printf("%.2f\n", float64(hallRent) + statues + catering + soundSystem)
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement