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
Convert Int data type to Int16 Int32 Int64
3 Different Examples - How State Works in React?
How do you handle HTTP client server compression in Go?
Modernizing Legacy Applications: Critical Tips for Organizational Upgrades
Golang program for implementation of Linear Search
Invalid operation: <variable> (type <type>) does not support indexing error in Golang