본문 바로가기
Kotlin Language/programmers

Kotlin - 두 수의 곱 프로그래머스 코딩 연습 (2)

by Classic Master 2023. 11. 19.
728x90

프로그래머스 문제

정수 num1num2가 매개변수 주어집니다. num1과 num2를 곱한 값을 return 하도록 solution 함수를 완성해주세요.

num1 num2 result
3 4 12
27 19 513

 

코틀린 답

class Solution {
    fun solution(num1: Int, num2: Int): Int {
        var answer: Int = 0
        answer = num1 * num2
        return answer
    }
}

 

728x90
반응형