Skip to content

Commit 73b5e3b

Browse files
author
Quincy
authored
Create calculate.h
1 parent a47800c commit 73b5e3b

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

4.0/calculate.h

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
#include <iostream>
2+
#include <string>
3+
#include <fstream>
4+
#include <vector>
5+
#pragma once
6+
7+
struct calculate
8+
{
9+
std::string add(double numA, double numB);
10+
std::string subtract(double numA, double numB);
11+
std::string multiply(double numA, double numB);
12+
std::string divide(double numA, double numB);
13+
std::string power(double numA, double numB);
14+
std::string square(double numA, double numB);
15+
};

0 commit comments

Comments
 (0)