Swift题解 import Foundation while let n = Int64(readLine() ?? "") { let str = n.formatedExpress let array = str.components(separatedBy: ",").map{ Int($0) ?? 0 } var suffix = [String].init(repeating: "", count: array.count) let count = array.count if count == 4 { suffix = ["billion", "million", "thousa...