자바의 정석 - return문, 반환값

Yohan·2023년 11월 12일
0

반환타입이 void가 아니면, 반드시 return문 필요

int multiply(int x, int y) {
	int result = x * y;
    
    return result;
}

int max(int a, int b) {
	if (a > b)
    	return a; // 조건식이 참일 때만 실행
    else
    	return b; // 조건식이 거짓일 때만 실행
}
profile
백엔드 개발자

0개의 댓글