You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

exer_33 (2).js 109B

1234567
  1. let i = 0;
  2. let total = 0;
  3. for (let i = 20; i <= 50; i++){
  4. console.log(total);
  5. total = total / 3;
  6. }