compteur.m 84 B

1234567
  1. i=1;
  2. max=60;
  3. while i < max
  4. fprintf(" i = %d \n",i);
  5. i = i + 1;
  6. pause(10);
  7. end