연산자
-
[whiteship] 온라인스터디 - 3주차. 연산자IT 발자취.../JAVA 2020. 11. 28. 14:17
github.com/whiteship/live-study/issues/3 3주차 과제: 연산자 · Issue #3 · whiteship/live-study 목표 자바가 제공하는 다양한 연산자를 학습하세요. 학습할 것 산술 연산자 비트 연산자 관계 연산자 논리 연산자 instanceof assignment(=) operator 화살표(->) 연산자 3항 연산자 연산자 우선 순위 (option github.com 산술 연산자 산수 (Arithmetic) 연산자는 수학적인 계산에 사용되는 연산자이다. + 더하기 - 빼기 * 곱하기 / 나누기 % 나머지 public static void main(String[] args) { // result 의 값은 3 int result = 1 + 2; System.out...