백준 1934 c++ 주석포함


백준 1934 c++ 주석포함

백준: 최소공배수 #include #include #include #include using namespace std; int gcd(int a, int b) //최대공약수를 구하는 함수 { return b ? gcd(b, a % b) : a; } int main() { ios::sync_with_stdio(false);..

백준 1934 c++ 주석포함에 대한 요약내용입니다.

자세한 내용은 아래에 원문링크를 확인해주시기 바랍니다.


원문링크 : 백준 1934 c++ 주석포함