我正在Common Lisp中嘗試製作Windows遊戲掃雷。如何在Common Lisp中打印列表爲矩陣列表
我有一個列表(1 1 1 2 2 2 3 3 3)
並希望打印樣基質
(1 1 1
2 2 2
3 3 3)
如何做到這一點?
編輯
我在
(format t "Input width:")
(setf width (read))
(format t "Input height:")
(setf height (read))
(format t "How many mines:")
(setf brMina (read))
(defun matrica (i j)
(cond ((= 0 i) '())
(t (append (vrsta j) (matrica (1- i) j)))))
(setf minefield (matrica width height))
(defun stampaj()
(format t "~%~a" minefield))
你應該發佈一些你已經嘗試過的代碼。 – 2013-05-12 13:09:24