Advertisement
Guest User

Untitled

a guest
Jul 22nd, 2019
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. /* Syntax */
  2. while (expression) {
  3. // Statement(s) to be executed if expression is true
  4. }
  5. /* Example */
  6. var num = 6;
  7. var factorial = 1;
  8.  
  9. while(num >=1) {
  10. factorial = factorial * num;
  11. num--;
  12. }
  13. print("The factorial is ${factorial}");
  14.  
  15. /* Output
  16. The factorial is 720
  17. */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement