Skip to main content

nth Fibonacci Number using Recursion in C++

#include using namespace std; int fib(int n){ if(n < 2){ return 1; } else{ return (fib(n-2) + fib(n-1)); } } int main(){ cout << fib(6); return 0; }

Comments

  1. Cheap Moncler jackets , combining elegant style and cutting-edge technology, a variety of styles of Cheap moncler accessories jackets , the pointer walks between your exclusive taste style.

    ReplyDelete
  2. Harrah's Philadelphia casino set to welcome new customers
    Harrah's Philadelphia Casino in Chester, 성남 출장샵 Chester in July 2021, is expected 강원도 출장안마 to launch its casino and 광양 출장샵 hotel guests in the Philadelphia area. Harrah's 동두천 출장샵 Philadelphia 구리 출장안마

    ReplyDelete

Post a Comment

Popular posts from this blog

SAP-1(Simple as Possible-1) Computer Architecture Introduction

The Simple-As-Possible (SAP)-1 computer is a very basic model of a microprocessor explained by Albert Paul Malvino. The SAP-1 design contains the basic necessities for a functional Microprocessor. Its primary purpose is to develop a basic understanding of how a microprocessor works, interacts with memory and other parts of the system like input and output. The instruction set is very limited and is simple. The features in SAP-1 computer are: W bus – A single 8 bit bus for address and data transfer.  16 Bytes memory (RAM)  Registers are accumulator and B-register each of 8 bits.  Program counter – initializes from 0000 to 1111 during program execution.  Memory Address Register (MAR) to store memory addresses.  Adder/ Subtracter for addition and subtraction instructions.  A Control Unit  A Simple Output.  6 machine state reserved for each instruction  The instruction format of SAP-1 Computer is (XXXX) (XXXX) A Simple animation to demonstrate the working of SAP I:

[FIX]Illuminate\Database\QueryException SQLSTATE[HY000] [2054] The server requested authentication method unknown to the client (SQL: select * from information_schema.tables where table_schema = enrolmentsystem and table_name = migrations and table_type = 'BASE TABLE')

Illuminate\Database\QueryException    SQLSTATE[HY000] [2054] The server requested authentication method unknown to the client (SQL: select * from information_schema.tables where table_schema = enrolmentsystem and table_name = migrations and table_type = 'BASE TABLE')   at vendor/laravel/framework/src/Illuminate/Database/Connection.php:678     674▕         // If an exception occurs when attempting to run a query, we'll format the error     675▕         // message to include the bindings with SQL, which will make this exception a     676▕         // lot more helpful to the developer instead of just the database's errors.     677▕         catch (Exception $e) {   ➜ 678▕             throw new QueryException(     679▕                 $query, $this->prepareBindings($bindings), $e     680▕             );     681▕         }     682▕        +33 vendor frames    34  artisan:37       Illuminate\Foundation\Console\Kernel::handle(Object(Symfony\Component\Console\Input\ArgvInput),