Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/iambenkis/algorithm4
c++ algorithm
https://github.com/iambenkis/algorithm4
Last synced: 22 days ago
JSON representation
c++ algorithm
- Host: GitHub
- URL: https://github.com/iambenkis/algorithm4
- Owner: iambenkis
- Created: 2021-12-22T08:11:36.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2021-12-22T08:34:25.000Z (about 3 years ago)
- Last Synced: 2025-01-03T04:21:11.617Z (about 1 month ago)
- Language: C++
- Size: 1000 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# algorithm4
c++ algorithm
This program asks the user to enter an N integer and it calculates u(N) defines by:
u(0)=1
u(1)=1
u(n+1)=u(n)+u(n-1)