Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 5.3

Lag en funksjon som spør bruker om et tall og så teller ned fra dette, før det gir signal til å skyte opp en rakett, slik som under. 

Code Block
titleCommand Window
Hvilket tall skal jeg telle ned fra? 8
8
7
6
5
4
3
2
1
Lift off!
Expand
titleLøsningsforslag 1
Code Block
titlerocketLaunch.m
function rocketLaunch()
    start = input( 'Hvilket tall skal jeg telle ned fra? ');
    while( start > 0 ) 
        fprintf('%d\n' , start);
        start = start -1;
    end
    fprintf('Lift off! \n');
end