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.


for <condition> { 
    statement
    increment/decrement
}

quotient-and-remainder

Example: How to find quotient without using the division operator in Go

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)
}

Output:

Enter two numbers:6 2
Quotient is: 3