Go Program to find quotient and remainder


In this program, you will learn how to find quotient and remainder in Go.


var a,b,r,q int
fmt.Scan(&a, &b)

quotient-and-remainder

Example: How to find quotient and remainder in Go

package main
import "fmt"

func main() {

	var a,b,r,q int
	fmt.Print("Enter two numbers:")
	fmt.Scan(&a, &b)

  q = a / b
  r = a % b

  fmt.Println("Quotient is:", q)
  fmt.Println("Remainder is:", r)
}

Output:

Enter two numbers:5 3
Quotient is: 1
Remainder is: 2