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