Should work:
package main
import (
"fmt"
)
type Dwelling struct {
Id int
City string
State string
Bedrooms int
Bathrooms int
NightlyRate int
}
func NewDwelling(id int, city string, state string, bedrooms int, bathrooms int, nightlyRate int) Dwelling {
return Dwelling{id, city, state, bedrooms, bathrooms, nightlyRate}
}
func main() {
dwelling1 := NewDwelling(1, "Los Angeles", "CA", 4, 2, 300)
dwelling2 := NewDwelling(2, "New York", "NY", 3, 1, 245)
dwelling3 := NewDwelling(3, "Chicago", "IL", 4, 1, 200)
dwelling4 := NewDwelling(4, "Seattle", "WA", 5, 3, 375)
fmt.Println("Welcome to Book-A-Dwelling!\\")
fmt.Println("Here are your dwelling options:\\")
fmt.Printf("Dwelling %d\\", dwelling1.Id)
fmt.Printf("Location: %s, %s\\", dwelling1.City, dwelling1.State)
fmt.Printf("%d Bedrooms, %d Baths\\", dwelling1.Bedrooms, dwelling1.Bathrooms)
fmt.Printf("Nightly Rate: $%d\\\\", dwelling1.NightlyRate)
fmt.Printf("Dwelling %d\\", dwelling2.Id)
fmt.Printf("Location: %s, %s\\", dwelling2.City, dwelling2.State)
fmt.Printf("%d Bedrooms, %d Baths\\", dwelling2.Bedrooms, dwelling2.Bathrooms)
fmt.Printf("Nightly Rate: $%d\\\\", dwelling2.NightlyRate)
fmt.Printf("Dwelling %d\\", dwelling3.Id)
fmt.Printf("Location: %s, %s\\", dwelling3.City, dwelling3.State)
fmt.Printf("%d Bedrooms, %d Baths\\", dwelling3.Bedrooms, dwelling3.Bathrooms)
fmt.Printf("Nightly Rate: $%d\\\\", dwelling3.NightlyRate)
fmt.Printf("Dwelling %d\\", dwelling4.Id)
fmt.Printf("Location: %s, %s\\", dwelling4.City, dwelling4.State)
fmt.Printf("%d Bedrooms, %d Baths\\", dwelling4.Bedrooms, dwelling4.Bathrooms)
fmt.Printf("Nightly Rate: $%d\\\\", dwelling4.NightlyRate)
var selectedDwelling Dwelling
var nights int
fmt.Print("Please select a dwelling number from the list above: ")
var input int
fmt.Scanln(&input)
switch input {
case 1:
selectedDwelling = dwelling1
case 2:
selectedDwelling = dwelling2
case 3:
selectedDwelling = dwelling3
case 4:
selectedDwelling = dwelling4
default:
fmt.Println("Invalid input")
return
}
fmt.Print("\\Excellent choice! How many nights will you stay? ")
fmt.Scanln(&nights)
basePrice := selectedDwelling.NightlyRate * nights
fmt.Printf("\\Booking Summary:\\")
fmt.Printf("Dwelling %d\\", selectedDwelling.Id)
fmt.Printf("Location: %s, %s\\", selectedDwelling.City, selectedDwelling.State)
fmt.Printf("%d Bedrooms, %d Baths\\", selectedDwelling.Bed