설명
빼기 는 4개 기본 산술 연산 중 하나다. 연산자 -
(빼기)는 첫번째에서 두번째를 뺀 두 피연산자의 차를 만든다.
문법
difference = operand1 - operand2;
매개변수
difference
: 변수. 허용되는 자료형: int, float, double, byte, short, long
operand1
: 변수 또는 상수. 허용되는 자료형: int, float, double, byte, short, long
operand2
: 변수 또는 상수. 허용되는 자료형: int, float, double, byte, short, long