Showing posts with label Fibonacci Sequence Using Functions in Go. Show all posts
Showing posts with label Fibonacci Sequence Using Functions in Go. Show all posts

Thursday, August 1, 2019

Fibonacci Sequence Using Functions in Go

Write a program that will ask the user to give a number and then the program will generate a corresponding Fibonacci series of numbers. 

The Fibonacci sequence is a series where the next term is the sum of the previous two terms. 

The first two terms of the Fibonacci sequence is 0 followed by 1.

The Fibonacci sequence example.

1 0, 1, 1, 2, 3, 5, 8, 13, 21

I am currently accepting programming work, IT projects, school and application development, programming projects, thesis and capstone projects, IT consulting work, computer tutorials, and web development work kindly contact me in the following email address for further details.  If you want to advertise on my website kindly contact me also in my email address also. Thank you.

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 I also accepting computer repair, networking and Arduino Project development at a very affordable price.

My personal website is http://www.jakerpomperada.com


Sample Program Output


Program Listing

/* fibonacci.go
Author   : Mr. Jake Rodriguez Pomperada, MAED-IT
Date     : July 31, 2019  Wednesday 9:00 AM
Location : Bacolod City, Negros Occidental
Website  : http://www.jakerpomperada.com
Emails   : jakerpomperada@gmail.com and jake_pomperada@tup.edu.ph
*/

package main

import (
"fmt"
"strconv"
)


func FibonacciRecursion(n int) int {
if n <= 1 {
return n
}
return FibonacciRecursion(n-1) + FibonacciRecursion(n-2)
}

func main() {

var val1 int

fmt.Print("\n")
fmt.Print("\tFibonacci Sequence Using Functions")
fmt.Print("\n\n")
fmt.Print("\tGive a Number : ")
fmt.Scanf("%d",&val1)

fmt.Print("\n")
fmt.Print("\tThe Fibonacci Sequence Series")
fmt.Print("\n\n")
fmt.Print("\t")
for i := 0; i < val1; i++ {
fmt.Print(strconv.Itoa(FibonacciRecursion(i)) + " ")
}
fmt.Print("\n\n")
fmt.Print("\tEnd of Program")
fmt.Print("\n")
}