您最信任的團隊!分享各種資訊:程式、科技、音樂、影片、遊戲、新聞等內容。聯絡信箱:chawteam21@gmail.com。
以for迴圈來寫Swift九九乘法表的程式
for i in 1...9 { for j in 1...9 { print("\(i)*\(j)=\(i*j)") } }