https://github.com/iambenkis/algorithms5
c++ algorithm
https://github.com/iambenkis/algorithms5
Last synced: 21 days ago
JSON representation
c++ algorithm
- Host: GitHub
- URL: https://github.com/iambenkis/algorithms5
- Owner: iambenkis
- Created: 2021-12-22T08:48:46.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2021-12-22T09:17:05.000Z (over 3 years ago)
- Last Synced: 2025-01-20T23:49:09.208Z (6 months ago)
- Language: C++
- Size: 22.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# algorithms5
c++ algorithm
This program asks a user to enter an integer N and it calculates u(N) defines by:
u(0)=3
u(1)=2
u(n)=n.u(n-1)+(n+1).u(n-2)+n