Added previous arduino implementations.

This commit is contained in:
2026-08-07 13:29:57 +02:00
commit 2eb04509db
9 changed files with 179 additions and 0 deletions

18
Problem2.hpp Normal file
View File

@@ -0,0 +1,18 @@
#ifndef Problem2_h
#define Problem2_h
#include "ProblemBase.hpp"
class Problem2 : public ProblemBase {
private:
unsigned long value1 = 0;
unsigned long value2 = 1;
unsigned long fibonacci;
public:
Problem2();
bool Step();
};
#endif