網頁

2021年9月30日 星期四

Swift 九九乘法表 程式碼

以for迴圈來寫Swift九九乘法表的程式

for i in 1...9 {
   for j in 1...9 {
     print("\(i)*\(j)=\(i*j)")
    }
}