diff options
| author | Asahel <[email protected]> | 2024-02-01 20:57:20 -0800 |
|---|---|---|
| committer | Asahel <[email protected]> | 2024-02-01 20:57:20 -0800 |
| commit | 98942d6c6450b7613b54025b84e456078b3edaa6 (patch) | |
| tree | 3f2d096afa11aa4a9bc82b4ada723dfe5456ec6c /Homework3/recursive.h | |
| parent | Added recursive.cpp and recursive.h (diff) | |
| download | archived-homework-3-asahellt-98942d6c6450b7613b54025b84e456078b3edaa6.tar.xz archived-homework-3-asahellt-98942d6c6450b7613b54025b84e456078b3edaa6.zip | |
Implemented Fib function
Diffstat (limited to 'Homework3/recursive.h')
| -rw-r--r-- | Homework3/recursive.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Homework3/recursive.h b/Homework3/recursive.h index bdecab3..b6fb058 100644 --- a/Homework3/recursive.h +++ b/Homework3/recursive.h @@ -5,5 +5,8 @@ long factorial(int a); - + +size_t fibonacci(int a); + + #endif
\ No newline at end of file |