카페검색 본문
카페글 본문
-
[ZPX White Paper v2.0] 위상 계승(Phase Inheritance)과 고유각 초기화를 통한 완전수 연속체의 기하학적 2026.05.26해당카페글 미리보기
6 = calculate_phase_seed(6) print(f"1) Perfect Number 6 Closure Angle : {np.degrees(angle_6):.2f}°") print(f" - Divisor Gears for 6 : {divs_6}") # 2. 6의 각도 정보를 'Seed'로 삼아 28의 초기 공간 왜곡 계산 # 28의 7개 파동층이 6의 종결...
-
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...