在网上找了很久Swift 的控制台输入,因为要做编程题想用Swift,奈何基本上没有能用的。虽然自己也找到了这种使用ReadLine()的方法,但依然无法通过牛客网的测试,只想吐槽一句牛客网辣鸡,哦,Swift也辣鸡。
let input = readLine()?.split(separator: " ")
let a = input![0]
let b = input![1]
print(a)
这种方法和Python的input().spit(' ')很像。
在网上找了很久Swift 的控制台输入,因为要做编程题想用Swift,奈何基本上没有能用的。虽然自己也找到了这种使用ReadLine()的方法,但依然无法通过牛客网的测试,只想吐槽一句牛客网辣鸡,哦,Swift也辣鸡。
let input = readLine()?.split(separator: " ")
let a = input![0]
let b = input![1]
print(a)
这种方法和Python的input().spit(' ')很像。