28
loading...
This website collects cookies to deliver better user experience
true
package main
import "fmt"
func main() {
percentage:= 75
if percentage > 50 {
fmt.Println("You hold a majority!")
}
}
if
condition is falsepackage main
import "fmt"
func main() {
percentage:= 33
if percentage > 50 {
fmt.Println("You hold a majority!")
} else {
fmt.Println("You don't hold a majority")
}
}
package main
import "fmt"
func main() {
percentage:= 33
if percentage > 50 {
fmt.Println("You hold a majority!")
} else if percentage > 30 && percentage <= 50 {
fmt.Println("You have decent amount")
} else {
fmt.Println("Please check your life choices")
}
}
package main
import "fmt"
func main() {
if percentage:= 76; percentage > 50 {
fmt.Println("You hold a majority!")
} else if percentage > 30 && percentage <= 50 {
fmt.Println("You have decent amount")
} else {
fmt.Println("Please check your life choices")
}
}