Skip to content

Instantly share code, notes, and snippets.

@masakid
Created March 15, 2015 01:36
Show Gist options
  • Select an option

  • Save masakid/c527f49a8f2f7e1eb5ec to your computer and use it in GitHub Desktop.

Select an option

Save masakid/c527f49a8f2f7e1eb5ec to your computer and use it in GitHub Desktop.
//文字列型から整数への変換
let width:String = "240"
let height:String = "2"
let menseki = width.toInt()! * height.toInt()!
println("\(menseki)cm2")
//文字列型からDouble型への変換
let r = 60
let pai = "3.14"
//かけられる数もFloat型に直す必要あり
let ensyu:Float = Float(2*r) * (pai as NSString).floatValue
println("円周は\(ensyu)")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment