14 lines
164 B
C++
14 lines
164 B
C++
|
#ifndef S0509_FIBONACCI_NUMBER_HPP
|
||
|
#define S0509_FIBONACCI_NUMBER_HPP
|
||
|
|
||
|
#include <vector>
|
||
|
|
||
|
using namespace std;
|
||
|
|
||
|
class S0509 {
|
||
|
public:
|
||
|
int fib(int n);
|
||
|
};
|
||
|
|
||
|
#endif
|