From 06cee99f912b34e1254d904ceeaf3e12c2137a5d Mon Sep 17 00:00:00 2001 From: Alex Date: Wed, 1 Apr 2026 23:30:32 +0300 Subject: [PATCH] Added special calculator class --- special_calculator.cpp | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 special_calculator.cpp diff --git a/special_calculator.cpp b/special_calculator.cpp new file mode 100644 index 0000000..06fa170 --- /dev/null +++ b/special_calculator.cpp @@ -0,0 +1,7 @@ +#include "special_calculator.h" +#include + +int SpecialCalculator::special(int a) +{ + return sqrt(a); +} \ No newline at end of file