This commit is contained in:
2023-02-08 12:20:07 +08:00
parent ff53de285f
commit 59242266b3
3 changed files with 46 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
#ifndef S0509_FIBONACCI_NUMBER_HPP
#define S0509_FIBONACCI_NUMBER_HPP
#include <vector>
using namespace std;
class S0509 {
public:
int fib(int n);
};
#endif