Contents

Views 8873 Comment 0
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print

# 최대 공약수 구하는 함수

#include<stdio.h>
#include<conio.h>

int gcd(int m, int n) {
    if (m<=0) return 0;
    if (n<=0) return 0;
    while(m != n){
        if (m>n) m = m - n;
        else n = n - m;
    }
    return n;
}

void main(){
    int a,b;

    printf("Enter a first Number : ");
    scanf("%d",&a);

    printf("Enter a second Number : ");
    scanf("%d",&b);

    printf("GCD is %d",gcd(a,b));
    getch();
} 


?

List of Articles
No. Category Subject Author Date Views
21 System/OS HTTP 프로토콜 (브라우저와 웹서버 간의 통신) hooni 2003.04.23 48250
20 Develop How to Test SMTP AUTH using Telnet hooni 2018.04.05 1332
19 System/OS How to Setup an Email Server on CentOS 7 hooni 2018.04.05 2779
18 System/OS How to Install and Use wget on Mac file hooni 2020.09.03 1277
17 Etc How to completely Uninstall Coda hooni 2017.10.24 2136
16 Etc GSM에서 음성이 실리는 과정 요약.. hooni 2013.04.23 17518
15 Develop GPL, AGPL, MPL,.. 한눈에 보는 오픈소스SW 라이선스 file hooni 2014.10.14 1146
14 Develop git 브런치 배우기 (링크) hooni 2013.07.09 20571
13 Develop GCM 사용하기 3 (JSP로 GCM 푸시 서버 만들기) 4 file hooni 2013.07.06 25315
12 Develop GCM 사용하기 2 (단말에 GCM 구현하기) file hooni 2013.07.06 23248
11 System/OS Enable the Develop Menu in Safari file hooni 2017.02.07 1069
10 System/OS Enable Safari Hidden Debug Menu in Mac OS X file hooni 2017.02.07 1142
Board Pagination Prev 1 ... 89 90 91 92 93 94 95 96 97 98 Next
/ 98