home *** CD-ROM | disk | FTP | other *** search
- (defun HJ01 ()
- (setvar "cmdecho" 0)
- (setq n (getint "\n╩Σ╚δ┤╣╧▀╡─╕∙╩²: "))
- (while(/= n nil)
- (setq q1 (getint "\n╩Σ╚δ┤╣╧▀╡─╝Σ╕⌠: "))
- (setq a (getpoint "\n╩Σ╚δ┤╣╧▀╡─╞≡╡π: "))
- (setq b (getpoint "\n╩Σ╚δ┤╣╧▀╡─╓╒╡π: "))
- (setq c (list (car a) (cadr b)))
- (command "line" a c "")
- (command "array" a "" "r" 1 n q1)
- (setq n (getint "\n╝╠╨°╩Σ╚δ┤╣╧▀╡─╕∙╩², ╗≥╗╪│╡╜ß╩°: "))
- )
- )
- (hj01)