码迷,mamicode.com
首页 > 编程语言 > 详细

swift 第三天 函数

时间:2015-12-18 14:39:00      阅读:202      评论:0      收藏:0      [点我收藏+]

标签:

/*************************************/

func sayHello(name: String,age: Int){

    print("your name is \(name),age is \(age)")

    

      }

sayHello("cai",age: 18)

/*************************************/

func sayHello()->Int{

    

    return 16

   }

 print (sayHello())

/*************************************/

func sayHello() {

    

    print("abc")

   }

sayHello()

/*************************************/

func sayHello(personName: String) -> String {

    let greeting = "Hello, " + personName + "!"

    return greeting

}

print(sayHello("caibin"))

swift 第三天 函数

标签:

原文地址:http://www.cnblogs.com/egai/p/5056825.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!