7 lines
91 B
C++
Raw Normal View History

2024-03-08 14:01:18 +08:00
#include "my_math.h"
int my_math::GetSum(int a, int b) const
{
return a + b + m_nBase;
}