GO Program to Calculate Sum of Natural Numbers Using for.....Loop
In this example, using simple for........ loop to calculate the sum of natural numbers(the positive numbers 1, 2, 3... are known as natural numbers) from 1 to n (entered by the user).
Example
// Sum of n natural number (the positive numbers 1, 2, 3... are known as natural numbers)
package main
import "fmt"
func main(){
var n,sum int
fmt.Print("Enter a positive integer : ")
fmt.Scan(&n)
for i:=1; i<=n; i++ { // assigning 1 to i
sum += i // sum = sum + i
}
fmt.Print("Sum : ",sum)
}
for init; condition; post { } Like a C for
for condition { } Like a while
for { } Endless loop
Most Helpful This Week
How do you handle HTTP server HTTP/2 in Go?
Convert Float32 to Float64 and Float64 to Float32
Pascal triangle in Go Programming Language
Find out how many logical processors used by current process
Panic: runtime error: index out of range error in Golang
How to Improve the Performance of Your Golang Application?