Golang program to print the tables up to given number using for loop

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

Printing the tables up to given number in Golang

Problem Solution:

In this program, we will read an integer number and print tables up to a given number using the nested for loop on the console screen.

Program/Source Code:

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

Golang code to print the tables up to given number using for loop

// Golang program to print the tables up to given number
// using "for" loop.

package main

import "fmt"

func main() {
	var num int = 0

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

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

Output:

Enter Number: 10
2 4 6 8 10 12 14 16 18 20
3 6 9 12 15 18 21 24 27 30
4 8 12 16 20 24 28 32 36 40
5 10 15 20 25 30 35 40 45 50
6 12 18 24 30 36 42 48 54 60
7 14 21 28 35 42 49 56 63 70
8 16 24 32 40 48 56 64 72 80
9 18 27 36 45 54 63 72 81 90
10 20 30 40 50 60 70 80 90 100

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 tables up to given numbers using nested for loop on the console screen.

Golang Looping Programs »






Comments and Discussions!

Load comments ↻






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