Advertisement
Spocoman

Sea Trip

Oct 13th, 2024
199
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Go 0.52 KB | None | 0 0
  1. package main
  2.  
  3. import "fmt"
  4.  
  5. func main() {
  6.     var dayFoodPrice, daySouvenirPrice, dayHotelPrice float64
  7.     fmt.Scanln(&dayFoodPrice)
  8.     fmt.Scanln(&daySouvenirPrice)
  9.     fmt.Scanln(&dayHotelPrice)
  10.    
  11.     foodPrice := dayFoodPrice * 3
  12.     souvenirPrice := daySouvenirPrice * 3
  13.     hotelPrice := dayHotelPrice * 0.90 + dayHotelPrice * 0.85 + dayHotelPrice * 0.80
  14.     transportPrice := 210.0 * 2 / 100 * 7 * 1.85
  15.  
  16.     fmt.Printf("Money needed: %.2f\n", foodPrice + souvenirPrice + hotelPrice + transportPrice)
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement