Programming Stigma
2012년 12월 13일 목요일
GCD
private static int GCD(int a, int b)
{
int Remainder;
while (b != 0)
{
Remainder = a % b;
a = b;
b = Remainder;
}
return a;
}
댓글 없음:
댓글 쓰기
최근 게시물
이전 게시물
홈
피드 구독하기:
댓글 (Atom)
댓글 없음:
댓글 쓰기