Answers for "dart while"

0

dart while

void main() { 
   var num = 5; 
   var factorial = 1; 
   
   while(num >=1) { 
      factorial = factorial * num; 
      num--; 
   } 
   print("The factorial  is ${factorial}"); 
}
Posted by: Guest on October-21-2021
0

Dart while loop

while (expression) {
   Statement(s) to be executed if expression is true  
}
Posted by: Guest on November-04-2021

Code answers related to "Dart"

Browse Popular Code Answers by Language