| 
									
										
										
										
											2018-10-13 23:30:21 +03:00
										 |  |  | // Copyright © 2018 Inanc Gumus | 
					
						
							|  |  |  | // Learn Go Programming Course | 
					
						
							|  |  |  | // License: https://creativecommons.org/licenses/by-nc-sa/4.0/ | 
					
						
							|  |  |  | // | 
					
						
							| 
									
										
										
										
											2019-10-30 19:34:44 +03:00
										 |  |  | // For more tutorials  : https://learngoprogramming.com | 
					
						
							|  |  |  | // In-person training  : https://www.linkedin.com/in/inancgumus/ | 
					
						
							|  |  |  | // Follow me on twitter: https://twitter.com/inancgumus | 
					
						
							| 
									
										
										
										
											2018-10-13 23:30:21 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | package main | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import ( | 
					
						
							|  |  |  | 	"fmt" | 
					
						
							|  |  |  | 	"math/rand" | 
					
						
							|  |  |  | 	"os" | 
					
						
							|  |  |  | 	"strconv" | 
					
						
							|  |  |  | 	"time" | 
					
						
							|  |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | const ( | 
					
						
							|  |  |  | 	maxTurns = 5 // less is more difficult | 
					
						
							| 
									
										
										
										
											2018-10-19 11:52:52 +03:00
										 |  |  | 	usage    = `Welcome to the Lucky Number Game! 🍀 | 
					
						
							| 
									
										
										
										
											2018-10-13 23:30:21 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | The program will pick %d random numbers. | 
					
						
							|  |  |  | Your mission is to guess one of those numbers. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | The greater your number is, harder it gets. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Wanna play? | 
					
						
							|  |  |  | ` | 
					
						
							|  |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func main() { | 
					
						
							|  |  |  | 	rand.Seed(time.Now().UnixNano()) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	args := os.Args[1:] | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if len(args) != 1 { | 
					
						
							|  |  |  | 		fmt.Printf(usage, maxTurns) | 
					
						
							|  |  |  | 		return | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	guess, err := strconv.Atoi(args[0]) | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		fmt.Println("Not a number.") | 
					
						
							|  |  |  | 		return | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-01-10 17:34:48 +01:00
										 |  |  | 	if guess <= 0 { | 
					
						
							| 
									
										
										
										
											2018-10-13 23:30:21 +03:00
										 |  |  | 		fmt.Println("Please pick a positive number.") | 
					
						
							|  |  |  | 		return | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-10-19 11:52:52 +03:00
										 |  |  | 	for turn := 0; turn < maxTurns; turn++ { | 
					
						
							| 
									
										
										
										
											2021-01-10 17:34:48 +01:00
										 |  |  | 		n := rand.Intn(guess) + 1 | 
					
						
							| 
									
										
										
										
											2018-10-13 23:30:21 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		if n == guess { | 
					
						
							|  |  |  | 			switch rand.Intn(3) { | 
					
						
							|  |  |  | 			case 0: | 
					
						
							|  |  |  | 				fmt.Println("🎉  YOU WIN!") | 
					
						
							|  |  |  | 			case 1: | 
					
						
							|  |  |  | 				fmt.Println("🎉  YOU'RE AWESOME!") | 
					
						
							|  |  |  | 			case 2: | 
					
						
							|  |  |  | 				fmt.Println("🎉  PERFECT!") | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			return | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	msg := "%s Try again?\n" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	switch rand.Intn(2) { | 
					
						
							|  |  |  | 	case 0: | 
					
						
							|  |  |  | 		fmt.Printf(msg, "☠️  YOU LOST...") | 
					
						
							|  |  |  | 	case 1: | 
					
						
							|  |  |  | 		fmt.Printf(msg, "☠️  JUST A BAD LUCK...") | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | } |