A simple go program that will demonstrate the running sum of integer values.
My email address is the following jakerpomperada@gmail.com, jakerpomperada@aol.com, and jakerpomperada@yahoo.com.
My mobile number here in the Philippines is 09173084360.
My telephone number at home here in Bacolod City, Negros Occidental Philippines is +63 (034) 4335675.
Here in Bacolod City I also accepting computer repair, networking and Arduino Project development at a very affordable price.
Program Listing
sum.go
package main
import "fmt"
func main() {
sum := 0
for i := 1; i<=20; i++ {
sum += i
}
fmt.Printf("The Total Sum = %d\n",sum)
}
No comments:
Post a Comment