Advertisement
Spocoman

Santas Holiday

Oct 12th, 2024
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Go 1.03 KB | None | 0 0
  1. package main
  2.  
  3. import "fmt"
  4.  
  5. func main() {
  6.     var days int
  7.     fmt.Scanln(&days)
  8.    
  9.     nights := days - 1
  10.    
  11.     var typee, rating string
  12.     fmt.Scanln(&typee)
  13.     fmt.Scanln(&rating)
  14.  
  15.     price := 0.0
  16.  
  17.     if nights > 0 {
  18.         if typee == "room for one person" {
  19.             price = 18.00;
  20.         } else if typee == "apartment" {
  21.             price = 25.00
  22.            
  23.             if nights < 10 {
  24.                 price *= 0.70
  25.             } else if nights > 15 {
  26.                 price *= 0.50
  27.             } else {
  28.                 price *= 0.65
  29.             }
  30.         } else {
  31.             price = 35.00
  32.            
  33.             if nights < 10 {
  34.                 price *= 0.90
  35.             } else if nights > 15 {
  36.                 price *= 0.80
  37.             } else {
  38.                 price *= 0.85
  39.             }
  40.         }
  41.  
  42.         if rating == "positive" {
  43.             price *= 1.25
  44.         } else {
  45.             price *= 0.90
  46.         }
  47.     }
  48.  
  49.     fmt.Printf("%.2f\n", price * float64(nights))
  50. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement