본문 바로가기
(문제풀이)

프로그래머스(java) : 몫 구하기

by cogito-new 2022. 10. 5.

#include <stdio.h>
#include <stdbool.h>
#include <stdlib.h>

int solution(int num1, int num2) {
    int answer = 0;
    
    answer = num1 / num2;
    
    return answer;
}
반응형