|
%d\n\n", c);
printf("If you want to exit -> (0 0)\n");
printf("Enter two integer numbers: ");
scanf("%d %d", &a, &b);
}
exit();
}
int Euclid(m, n)
{
int t, num = 0;
while (m > 0)
{
t = m;
m = n % m;
n = t;
printf("excute number is %d\n", ++num);
}
return n;
}
<< gdc함수와 euclid함수 비
|
- 페이지 4페이지
- 가격 500원
- 등록일 2004.09.11
- 파일종류 한글(hwp)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|