Arithmetic Operators
Cəmləmə operatoru (+)
+)package main
import "fmt"
func main() {
a := 10
b := 5
c := a + b // Cəmləmə əməliyyatı: 10 + 5 = 15
fmt.Println("Cəmi:", c)
}Çıxma operatoru (-)
-)Vurma operatoru (*)
*)Bölmə operatoru (/)
/)Qalıq operatoru (%)
%)Nəticə
Last updated