标签: swift
如何在Swift 5中添加1和2?
我已经尝试过了:
print(1++2)
和
print(x+y)
其中x = 1且y = 2
答案 0 :(得分:1)
尝试以下代码:
print(1 + 2) // Prints 3
下次尝试给出更好的解释。
希望这会有所帮助!