14 lines
162 B
C
14 lines
162 B
C
|
#pragma once
|
||
|
|
||
|
class my_math
|
||
|
{
|
||
|
private:
|
||
|
int m_nBase {6};
|
||
|
public:
|
||
|
my_math() = default;
|
||
|
~my_math() = default;
|
||
|
public:
|
||
|
int GetSum(int a, int b) const;
|
||
|
};
|
||
|
|