Q:

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

belongs to collection: Golang Looping Programs

0

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.

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 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 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.

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 demonstrate the for loop using t... >>
<< Golang program to demonstrate infinite loop withou...