산술 연산자

choizz156·2022년 9월 10일
0

Java Basic

목록 보기
7/10

산술 연산자

연산자설명
+더하기 연산자
-빼기 연산자
*곱하기 연산자
/나누어서 몫을 리턴하는 연산자
%나누어서 나머지를 리턴하는 연산자
class ArithmeticDemo {

    public static void main (String[] args) {

        int result = 1 + 2;
        // result is now 3
        System.out.println("1 + 2 = " + result);
        int original_result = result;

        result = result - 1;
        // result is now 2
        System.out.println(original_result + " - 1 = " + result);
        original_result = result;

        result = result * 2;
        // result is now 4
        System.out.println(original_result + " * 2 = " + result);
        original_result = result;

        result = result / 2;
        // result is now 2
        System.out.println(original_result + " / 2 = " + result);
        original_result = result;

        result = result + 8;
        // result is now 10
        System.out.println(original_result + " + 8 = " + result);
        original_result = result;

        result = result % 7;
        // result is now 3
        System.out.println(original_result + " % 7 = " + result);
    }
}

👉 a = a + 1이라는 표현과 a += 1은 같은 표현이다. 이것을 복합대입연산자라고 부른다.
👉+는 두개의 문자열을 연결하는 데에 사용된다.

class ConcatDemo {
    public static void main(String[] args){
        String firstString = "This is";
        String secondString = " a concatenated string.";
        String thirdString = firstString+secondString;
        System.out.println(thirdString);
    }
}

// 결과는 This is a concatenated string.이 나온다.
profile
조금씩 성장하는 개발자...!

0개의 댓글