Views 8873 Votes 0 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();
} 

?

  1. [php] whois정보 조회 프로그램

    Date2003.04.23 CategoryDevelop Byhooni Views11733
    Read More
  2. [c] 최대공약수 알고리즘 (유클릿)

    Date2003.04.23 CategoryDevelop Byhooni Views8873
    Read More
  3. [c] 소수점 반올림^^

    Date2003.04.23 CategoryDevelop Byhooni Views8478
    Read More
  4. [c] 하노이탑 - 재귀함수

    Date2003.04.23 CategoryDevelop Byhooni Views9153
    Read More
  5. [c] 팩토리얼.. - 재귀함수

    Date2003.04.23 CategoryDevelop Byhooni Views9500
    Read More
  6. [c] 간단한 채팅(클라이언트/서버) 프로그램 소스

    Date2003.04.23 CategoryDevelop Byhooni Views9068
    Read More
  7. [c] 그래픽스 자료(OpenGL 라이브러리) 샘플 소스

    Date2003.04.23 CategoryDevelop Byhooni Views10181
    Read More
  8. [opengl] 컴퓨터 그래픽스 강의 자료(수업자료)

    Date2003.04.23 CategoryDevelop Byhooni Views20432
    Read More
  9. [c++] p.47 연습문제 3번

    Date2003.04.23 CategoryDevelop Byhooni Views10105
    Read More
  10. [c++] p.58 연습문제 2번

    Date2003.04.23 CategoryDevelop Byhooni Views16296
    Read More
  11. [c++] p.118 확인학습 5번

    Date2003.04.23 CategoryDevelop Byhooni Views10734
    Read More
  12. [c] 프로그래밍 ppt, 스킬업 (비트 수업자료)

    Date2003.04.23 CategoryDevelop Byhooni Views8177
    Read More
  13. [css] 스크롤바 안생기게

    Date2003.04.23 CategoryDevelop Byhooni Views9886
    Read More
  14. [c] 민수형 libipq 샘플 소스 ㅋㅋ

    Date2003.04.23 CategoryDevelop Byhooni Views14112
    Read More
  15. [php] 니우쪽지다.. 받아라~ ^^

    Date2003.04.23 CategoryDevelop Byhooni Views9834
    Read More
  16. [c++]현승이가 보내준 동영상 암호화 자료.. 볼것..

    Date2003.04.23 CategoryDevelop Byhooni Views9728
    Read More
Board Pagination Prev 1 2 3 4 5 ... 53 Next
/ 53