Go Program to find quotient without using the division operator
In this program, you will learn how to find quotient without using the division operator in Go.

In this program, you will learn how to find quotient without using the division operator in Go.
for <condition> {
statement
increment/decrement
}
package main
import "fmt"
func main() {
var a, b int
fmt.Print("Enter two numbers:")
fmt.Scan(&a, &b)
c := 0
for a >= b {
a = a - b
c++
}
fmt.Println("Quotient is:", c)
}
Enter two numbers:6 2
Quotient is: 3