|
x 短边
y 长边
n 斜边
with ttt as
(select level lv
from dual
connect by level < 50
),
tt as
(select x.lv x, y.lv y, c.lv c
from ttt x, ttt y, ttt c
where
x.lv*x.lv+y.lv*y.lv=c.lv*c.lv and x.lv<y.lv
)
select min(t3.c) from tt t1,tt t2,tt t3 where t1.x=t2.y and t2.y=t3.c
答案15
[ 本帖最后由 kachau 于 2011-8-11 14:14 编辑 ] |
|