Advertisement
Spocoman

09. Weather Forecast

Sep 15th, 2024
151
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Go 0.23 KB | None | 0 0
  1. package main
  2. import "fmt"
  3.  
  4. func main() {
  5.     var weather string
  6.     fmt.Scanln(&weather)
  7.    
  8.     if (weather == "sunny") {
  9.         fmt.Println("It's warm outside!")
  10.     } else {
  11.         fmt.Println("It's cold outside!")
  12.     }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement