Golang program to demonstrate for loop as while loop to print number from 1 to 10

Here, we are going to demonstrate for loop as while loop to print number from 1 to 10 in Golang (Go Language)?
Submitted by Nidhi, on March 06, 2021 [Last updated : March 03, 2023]

Implement the for loop as while loop to print number from 1 to 10 in Golang

Problem Solution:

In this program, we will use the for loop as while loop, because here we will use only conditional expression in the for loop to print numbers from 1 to 10.

Program/Source Code:

The source code to demonstrate for loop as while loop to print number from 1 to 10 is given below. The given program is compiled and executed successfully.

Golang code to implement the for loop as while loop to print number from 1 to 10

// GoLang program to demonstrate "for" loop as
// "while" loop to print number from 1 to 10.

package main

import "fmt"

func main() {
	var num int = 1

	for num <= 10 {
		fmt.Printf("%d ", num)
		num = num + 1
	}
}

Output:

1 2 3 4 5 6 7 8 9 10

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 used on condition in the for loop and printed numbers 1 to 10 on the console screen.

Golang Looping Programs »





Comments and Discussions!

Load comments ↻





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