Q:

Golang program to calculate the Highest Common Factor (HCF)

belongs to collection: Golang Looping Programs

0

In this program, we will read two integer numbers to calculate the Highest Common Factor and then print the result on the console screen.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Program/Source Code:

The source code to calculate the Highest Common Factor is given below. The given program is compiled and executed successfully.

// Golang program to calculate the Highest Common Factor

package main
import "fmt"

func main() {
    var num1 int=0
    var num2 int=0
    var temp int=0
    
    fmt.Printf("Enter number1: ")
    fmt.Scanf("%d",&num1)
    
    fmt.Printf("Enter number2: ")
    fmt.Scanf("%d",&num2)
    
    for (num2!=0){
        temp = num1 % num2
        num1 = num2
        num2 = temp
    }

    fmt.Printf("Highest Common Factor is:%d", num1)
}

Output:

Enter number1: 100
Enter number2: 40
Highest Common Factor is:20

Explanation:

In the above program, we declare the package main. The main package is used to tell the Go language compiler that the package must be compiled and produced the executable file. Here, we imported the fmt package that includes the files of package fmt then we can use a function related to the fmt package.

In the main() function, we read two integer numbers and calculated the HCF. After that printed the result on the console screen.

 

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
Golang program to calculate the multiplication of ... >>