설명
곱셈 은 4 기본 산술 연산 중 하나다. 연산자 *
(asterisk) 는 두 피연산자릅 곱한다.
문법
product = operand1 * operand2;
매개변수
product
: 변수. 허용되는 자료형: int, float, double, byte, short, long
operand1
: 변수 또는 상수. 허용되는 자료형: int, float, double, byte, short, long
operand2
: 변수 또는 상수. 허용되는 자료형: int, float, double, byte, short, long