为了账号安全,请及时绑定邮箱和手机立即绑定
var coordinate = (1,1)
switch coordinate
{
case (0,0):
    println("It's at origin!")
case (1,0):
    println("It's an unit vector on the positive x-axis.")
case (-1,0):
    println("It's an unit vector on the negative x-axis.")
case (0,1):
    println("It's an unit vector on the positive y-axis.")
case (0,-1):
    println("It's an unit vector on the negative y-axis.")
default:
    println("It's just an ordinary coordinate.")
    
}

switch coordinate
{
case (0,0):
    println("It's at origin!")
case (_,0):
    println("(\(coordinate.0),0) is on the x-axis.")
case (0,_):
    println("(0,\(coordinate.0)) is on the y-axis.")
default:
    println("(\(coordinate.0),\(coordinate.1)) is just an ordinary coordinate.")
}


正在回答

0 回答

举报

0/150
提交
取消
玩儿转Swift
  • 参与学习       57172    人
  • 解答问题       511    个

这套教程比任何的Swift中文教程深入,并且演示示例更丰富

进入课程
意见反馈 帮助中心 APP下载
官方微信