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
Top 20 Most Popular Cryptocurrencies To Watch In 2024
How to check if an item exists in Slice in Golang?
Golang program for implementation of Huffman Coding Algorithm
GO Program to Generate Multiplication Table
Invalid operation: <variable> (type <type>) does not support indexing error in Golang
How to set timeout for http.Get() requests in Golang?