Category Archives

Program Input: nterms = as.integer(readline(prompt="How many terms? ")) # first two terms n1 = n2 = 1 count = 2 # check if the number of terms is valid if(nterms <= 0) { print("Plese enter a positive integer") } else { if(nterms == 1) { print("Fibonacci sequence:") print(n1) } else { print("Fibonacci sequence:") print(n1)

Fibonacci Sequence in R Programming Language

Program Input: nterms = as.integer(readline(prompt="How many terms? ")) # first two terms n1 = n2 = 1 count = 2 # check if the number of terms is valid if(nterms <= 0) { print("Plese enter a positive integer") } else { if(nterms == 1) { print("Fibonacci sequence:") print(n1) } else { print("Fibonacci sequence:") print(n1)