5 lines
93 B
C++
5 lines
93 B
C++
#ifndef CAL_H
|
|
#define CAL_H
|
|
#include <iostream>
|
|
double cal(std::string exp);
|
|
#endif // CAL_H
|