설명
나눗셈 은 4개 기본 연산 중 하나다. 연산자 /
(slash) 는 두 피연산자에 연산하여 결과를 얻는다.
문법
result = numerator / denominator;
매개변수
result
: 변수. 허용되는 자료형: int, float, double, byte, short, long
numerator
: 변수 또는 상수. 허용되는 자료형: int, float, double, byte, short, long
denominator
: 0 아닌 변수 또는 상수. 허용되는 자료형: int, float, double, byte, short, long