Go Program to check the age of a user is eligible for voting or not
In this program, you will learn how to check the age of a user who is eligible for voting or not in Go.
if age >= 18 {
//statement
}
Example: How to check the age of a user who is eligible for voting or not in Go
package main
import "fmt"
func main() {
var age int
fmt.Print("Enter your age:")
fmt.Scan(&age)
if age >= 18 {
fmt.Println("You are eligible for voting")
} else {
fmt.Println("You are not eligible for voting")
}
}
Output:
Enter your age:20
You are eligible for voting