Advertisement
Guest User

Untitled

a guest
Jul 27th, 2014
17
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
REBOL 0.19 KB | None | 0 0
  1. REBOL[]
  2. i: 999
  3. x: 100
  4. product: 0
  5. while [(i > 100) and (x < 999)] [
  6.   i: i - 1 x: x + 1
  7.   product: i * x
  8.   product: to-string product
  9.   if [product = reverse product] [print product]
  10.   ]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement