카페검색 본문
카페글 본문
-
proper divisor 2004.03.21해당카페글 미리보기
약수(divisor) 중 그 수 자신보다 작은 약수들을 말한다고 하는데요..(n이라는 수의 약수 중에서 n을 제외한 나머지) proper divisor를 가리키는 우리말이 있는지요?
-
Greatest Common Factor or Divisor 2010.01.08해당카페글 미리보기
Greatest Common Factor (Divisor) In mathematics, the greatest common divisor (gcd), sometimes known as the greatest common factor (gcf) or highest common factor (hcf), of two non-zero integers, is the largest positive integer that...
-
Statspack 실습중에 ORA-01476: divisor is equal to zero 에러 질문입니다. 2009.06.28해당카페글 미리보기
D' , size_for_estimate*1024/:def_cache * ERROR at line 10: ORA-01476: divisor is equal to zero 에러가 나와서 찾아봤더니 오라클에서는 - Use the DECODE statement - Use a function - Use exception handling...
-
[Python] 03 2025.03.13해당카페글 미리보기
main.py import mylib num1 = int(input("정수를 입력하시오: ")) num2 = int(input("정수를 입력하시오: ")) if mylib.Check_divisor(num1, num2): print("약수입니다.") else: print("약수가 아닙니다.") #mylib.py def Check_divisor(a, b): if not (a...
-
해당카페글 미리보기
-
해당카페글 미리보기
-
Max4 New Filters 2011.04.28해당카페글 미리보기
for pixel 15, (p15) then the new value is: p15' = (p8*a0+p9*a1+p10*a2+p14*a3+p15*a4+p16*a5+p20*a6+p21*a7+p22*a8) / Divisor + Bias This same calculation is applied for each of the RG and B color channels individually. The calculation is...
-
유리수 계산하는 문제입니다만..머가문젠지.. 2004.10.23해당카페글 미리보기
remainder != 0) { n = d; d = remainder; remainder = n % d; } return d; } private void makeRational() { int gcd; int divisor = 0; gcd = greatestCommonDivisor(numerator, denominator); numerator = numerator / gcd; denominator = denominator...
-
제비의 리(除比의 理)의 활용 ④ : 인류 역사상 가장 오래된 알고리즘 (유클리드 호제법) 2020.07.16해당카페글 미리보기
리턴함""" def qr(b, a): if a==0: return None, None return q(b, a), r(b, a) """b의 약수를 리턴함""" def divisor_list(b): my_divisor_list = [] for i in range(1, b+1): if r(b, i)==0: my_divisor_list.append(i) return my_divisor_list """b...
-
에러 좀 잡아주세요ㅠ 2005.06.09해당카페글 미리보기
에러 좀 잡아주세요. 소수를 구하는 프로그램이구요.for문을 사용했어요.;; #include int main(void) { int number, divisor, limit, count = 0; printf("2부터 n(입력)까지의 소수를 구하자. "); printf("상한 값 정수 n(2보다 커야함)을 입력...