The application basically calculates acceleration by inputting Initial and final velocity and time and then use a formula to calculate acceleration. However, since the value
In Swift 4.2 and Xcode 10.1
let string:String = "789" let intValue:Int = Int(string)! print(intValue) let integerValue:Int = 789 let stringValue:String = String(integerValue) //OR //let stringValue:String = "\(integerValue)" print(stringValue)