Golang : Integer is between a range
Problem:
You need to check if a given integer is in between a range of integer. How to do that?
Solution:
Check if the given integer is more than a minimum and less than a maximum.
Here you go!
package main
import (
"fmt"
)
func InBetween(i, min, max int) bool {
if (i >= min) && (i <= max) {
return true
} else {
return false
}
}
func main() {
fmt.Println("Is 2 between 1 and 3 : ", InBetween(2, 1, 3))
fmt.Println("Is 2 between 5 and 99 : ", InBetween(2, 5, 99))
}
Output:
Is 2 between 1 and 3 : true
Is 2 between 5 and 99 : false
Reference:
https://www.socketloop.com/tutorials/golang-how-to-check-if-ip-address-is-in-range
See also : Golang : How to check if IP address is in range
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+5.3k Python : Convert(cast) string to bytes example
+7.3k Golang : Not able to grep log.Println() output
+6.8k Golang : Experimental emojis or emoticons icons programming language
+6.1k nginx : force all pages to be SSL
+17.4k Golang : Check if IP address is version 4 or 6
+7.6k Golang : How to stop user from directly running an executable file?
+9.6k Golang : Read file with ioutil
+9.7k Golang : Quadratic example
+11.7k Golang : Simple file scaning and remove virus example
+11.5k Use systeminfo to find out installed Windows Hotfix(s) or updates
+6.9k Android Studio : Hello World example
+14.3k Golang : Simple word wrap or line breaking example