#include "Operator.h"
class Division : public Operator{
public:
Division();
std::string getLibelle();
float* calc();
};