프로그래머스 181936 공배수

1 개요[ | ]

프로그래머스 181936 공배수

2 C++[ | ]

#include <string>
#include <vector>

using namespace std;

int solution(int number, int n, int m) {
    return number%n==0 && number%m==0;
}
문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}