It looks like you're new here. If you want to get involved, click one of these buttons!
for repetition = 1:6
disp('Turn around')
if repetition >= 5
disp('Bright eyes')
end
disp('Every now and then')
switch repetition
case 1
disp('I get a little bit lonely and you''re never comin'' round')
case 2
disp('I get a little bit tired of listenin'' to the sound of my tears')
case 3
disp('I get a little bit nervous that the best of all the years have gone by')
case 4
disp('I get a little bit terrified and then I see the look in your eyes')
case {5,6}
disp('I fall apart')
end
disp(' ')
end
for repetition = 1:2
disp('And I need you')
if repetition == 1
disp('Now, tonight')
else
disp('More than ever')
end
disp(' ')
end
Comments
(I also like this song.)