본문 바로가기
개인공부

[class/method] 계산기

by 리승우 2022. 7. 17.
class Calculation{
    int add(int x, int y){
        return x+y;
    }
    int subtract(int x, int y){
        return x-y;
    }
}

public class Main {
    public static void main(String[] args) {
        // write your code here
        Calculation calculation = new Calculation();
        int addResult = calculation.add(1,2);
        int subtractResult = calculation.subtract(5,3);

        System.out.println(addResult);
        System.out.println(subtractResult);

    }
}

3
2

'개인공부' 카테고리의 다른 글

객체지향 상속  (0) 2022.07.18
입력과 출력  (0) 2022.07.17
[반복/조건문] 1부터 30까지 홀수의 합/ 짝수의 합 프로그래밍 문제  (0) 2022.07.17
항해준비  (0) 2022.07.16
메소드 (method) = 함수 (function)  (0) 2022.07.15

댓글