add files
This commit is contained in:
9
include/calculator.h
Normal file
9
include/calculator.h
Normal file
@@ -0,0 +1,9 @@
|
||||
#ifndef CALCULATOR_H
|
||||
#define CALCULATOR_H
|
||||
|
||||
int add(int a, int b);
|
||||
int subtract(int a, int b);
|
||||
int multiply(int a, int b);
|
||||
double divide(int a, int b);
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user