설명
덧셈 은 4개 기본 연산 중 하나이다. 연산자 +
(plus) 는 두 피연산자를 연산하여 합을 만든다.
문법
sum = operand1 + operand2;
매개변수
sum
: 변수. 허용되는 자료형: int, float, double, byte, short, long
operand1
: 변수 또는 상수. 허용되는 자료형: int, float, double, byte, short, long
operand2
: 변수 또는 상수. 허용되는 자료형: int, float, double, byte, short, long