We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 573d627 commit 17f9367Copy full SHA for 17f9367
3.0/calculator.h
@@ -0,0 +1,13 @@
1
+#include <string>
2
+#pragma once
3
+
4
+class calculate
5
+{
6
+public:
7
+ std::string add(double numA, double numB);
8
+ std::string subtract(double numA, double numB);
9
+ std::string multiply(double numA, double numB);
10
+ std::string divide(double numA, double numB);
11
+ std::string power(double numA, double numB);
12
+ std::string square(double numA, double numB);
13
+};
0 commit comments