일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- 피타고라스 정리
- Geogebra
- 이항분포
- algeomath
- 프로젝트 오일러
- project euler
- 재귀함수
- python
- 확률실험
- counting sunday
- 큰수의법칙
- 작도
- 알지오매스
- 오일러
- 블록코딩
- 수학탐구
- 구분구적법
- 프랙탈
- 지오지브라
- 하합
- 삼각함수의그래프
- 정오각형
- 몬테카를로
- 큰 수의 법칙
- 시뮬레이션
- 상합
- 제곱근의뜻
- 리만합
- 파이썬
- java
Archives
- Today
- Total
목록java (9)
이경수 선생님의 수학실험실
Problem 4(Largest palindrome product)A palindromic number reads the same both ways. The largest palindrome made from the product of two 2-digit numbers is 9009 = 91 × 99.Find the largest palindrome made from the product of two 3-digit numbers. In Python:product=0; result=0; num=[] for i in range(100, 1000): for j in range(100, 1000): product=i*j num=str(product) if num==num[::-1]: if product>res..
Project Euler
2019. 2. 7. 16:28