Golang program to print table of a given number using for loop

Here, we are going to learn how to print table of a given number using for loop in Golang (Go Language)?
Submitted by Nidhi, on March 06, 2021 [Last updated : March 03, 2023]

Printing the table of a given number in Golang

Problem Solution:

In this program, we will read an integer number and print a table of the given number on the console screen.

Program/Source Code:

The source code to print the table of a given number using the for loop is given below. The given program is compiled and executed successfully.

Golang code to print table of a given number using for loop

// Golang program to print the table of a given number
// using the "for" loop.

package main

import "fmt"

func main() {
	var num int = 0

	fmt.Print("Enter Number: ")
	fmt.Scanf("%d", &num)

	for count := 1; count <= 10; count++ {
		fmt.Printf("%d * %d = %d\n", num, count, num*count)
	}
}

Output:

Enter Number: 12
12 * 1 = 12
12 * 2 = 24
12 * 3 = 36
12 * 4 = 48
12 * 5 = 60
12 * 6 = 72
12 * 7 = 84
12 * 8 = 96
12 * 9 = 108
12 * 10 = 120

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 created a variable num with initial value 0. Here, we printed the table of a given number using the for loop on the console screen.

Golang Looping Programs »





Comments and Discussions!

Load comments ↻





Copyright © 2024 www.includehelp.com. All rights reserved.