#include <iostream.h> class Calc { private: int x,y; char op; int total; int sum() { total = x+y; return total; } int sub() { total = x-y; return total; } int multiply() { total = x*y; return total; } int division() { total = x/y; return total; } int remainder() { total = x%y; return total; } /* ↑ 위의 함수들은 전부 inline 함수이다. 클래스 블록 안에서 함수에 내..