Practice#7–1 定義 function,印出讓自己一秒落淚的情歌歌詞

作業目標:

  1. 找一首自己喜歡,讓自己一秒落淚的情歌歌詞,利用 print 將歌詞印出。
  2. 找出重覆的段落,將它定義成無參數的 function,讓自己不用輸入重覆的歌詞。
  3. 深情改編版: 定義有參數的 function,可傳入字串修改歌詞。

Bon Jovi — All about lovin’ you

原始歌詞:(Form: Mojim.com)All About Loving YouLooking at the pages of my life
Faded memories of me and you
Mistakes you know I've made a few
I took some shots and fell from time to time
Baby, you were there to pull me through
We've been around the block a time or two
I'm gonna lay it on the line
Ask me how we've come this far
The answer's written in my eyes

Chorus:
Every time I look at you, baby, I see something new
That takes me higher than before and makes me want you more
I don't wanna sleep tonight, dreamin's just a waste of time
When I look at what my life's been comin' to
I'm all about lovin' you

I've lived, I've loved, I've lost, I've paid some dues, baby
We've been to hell and back again
Through it all you're always my best friend
For all the words I didn't say and all the things I didn't do
Tonight I'm gonna find a way

Chorus:
Every time I look at you, baby, I see something new
That takes me higher than before and makes me want you more
I don't wanna sleep tonight, dreamin's just a waste of time
When I look at what my life's been comin' to
I'm all about lovin' you

You can take this world away
You're everything I am
Just read the lines upon my face
I'm all about lovin' you

Guitar Solo

Chorus:
Every time I look at you, baby, I see something new
That takes me higher than before and makes me want you more
I don't wanna sleep tonight, dreamin's just a waste of time
When I look at what my life's been comin' to
I'm all about lovin' you

All about lovin' you

找出重複段落,用 function 印出歌詞:

func lookupthePageOfMyLife() {print("Looking at the pages of my life")print("Faded memories of me and you")print("Mistakes you know I've made a few")print("I took some shots and fell from time to time")print("Baby, you were there to pull me through")print("We've been around the block a time or two")print("I'm gonna lay it on the line")print("Ask me how we've come this far")print("The answer's written in my eyes")}func everytimeILookAtYou() {print("Every time I look at you, baby, I see something new")print("That takes me higher than before and makes me want you more")print("I don't wanna sleep tonight, dreamin's just a waste of time")print("When I look at what my life's been comin' to")print("I'm all about lovin' you")}func ivelived() {print("I've lived, I've loved, I've lost, I've paid some dues, baby")print("We've been to hell and back again")print("Through it all you're always my best friend")print("For all the words I didn't say and all the things I didn't do")print("Tonight I'm gonna find a way")}func youcanTakeThisWorldAway() {print("You can take this world away")print("You're everything I am")print("Just read the lines upon my face")print("I'm all about lovin' you")}func allaboutLovinYou() {print("All about lovin' you")}lookupthePageOfMyLife()everytimeILookAtYou()ivelived()everytimeILookAtYou()youcanTakeThisWorldAway()everytimeILookAtYou()allaboutLovinYou()

改編: 把you改成MyMom

func everytimeILookAtMyMom(name: String) {print("Every time I look at " + name + ", baby, I see something new")print("That takes me higher than before and makes me want " + name + " more")print("I don't wanna sleep tonight, dreamin's just a waste of time")print("When I look at what my life's been comin' to")print("I'm all about lovin' " + name )}everytimeILookAtMyMom(name: "MyMom")

--

--