Fibonacci in Euphoria

Published on 19 February 2023 (Updated: 19 February 2023)

Welcome to the Fibonacci in Euphoria page! Here, you'll find the source code for this program as well as a description of how the program works.

Current Solution

include std/io.e
include std/types.e
include std/text.e
include std/get.e as stdget

-- Indices for value() return value
enum VALUE_ERROR_CODE, VALUE_VALUE, VALUE_NUM_CHARS_READ

-- Indices for parse_int() return value
enum PARSE_INT_VALID, PARSE_INT_VALUE

function parse_int(sequence s)
    -- Trim off whitespace and parse string
    s = trim(s)
    sequence result = stdget:value(s,, GET_LONG_ANSWER)

    -- Error if any errors, value is not an integer, or any leftover characters
    boolean valid = (
        result[VALUE_ERROR_CODE] = GET_SUCCESS
        and integer(result[VALUE_VALUE])
        and result[VALUE_NUM_CHARS_READ] = length(s)
    )

    -- Get value if invalid
    integer value = 0
    if valid
    then
        value = result[VALUE_VALUE]
    end if

    return {valid, value}
end function

procedure usage()
    puts(STDOUT, "Usage: please input the count of fibonacci numbers to output\n")
    abort(0)
end procedure

procedure show_fibonacci_values(integer value)
    -- Initialize Fibonacci state:
    -- fib(0) = 0
    -- fib(1) = 1
    integer a = 0
    integer b = 1
    integer t

    -- Update Fibonacci state and show results for requested number of values
    for n = 1 to value
    do
        -- fib(n) = fib(n - 1) + fib(n - 2)
        t = a + b
        a = b
        b = t

        printf(STDOUT, "%d: %d\n", {n, a})
    end for
end procedure

-- Check 1st command-line argument
sequence argv = command_line()
if length(argv) < 4 or length(argv[4]) = 0
then
    usage()
end if

-- Parse 1st command-line argument
sequence result = parse_int(argv[4])
integer value = result[PARSE_INT_VALUE]
if not result[PARSE_INT_VALID]
then
    usage()
end if

-- Show requested number of Fibonacci values
show_fibonacci_values(value)

Fibonacci in Euphoria was written by:

If you see anything you'd like to change or update, please consider contributing.

How to Implement the Solution

No 'How to Implement the Solution' section available. Please consider contributing.

How to Run the Solution

No 'How to Run the Solution' section available. Please consider contributing.