This website works better with JavaScript
Home
Explore
Help
Sign In
PoleCalcul
/
tutoriaux_calculco
Watch
3
Star
0
Fork
0
Files
Issues
0
Pull Requests
0
Wiki
Tree:
fda3a6d3cb
Branches
Tags
master
tutoriaux_ca...
/
checkpoint
/
compteur.m
compteur.m
84 B
History
Raw
1
2
3
4
5
6
7
i=1;
max=60;
while i < max
fprintf(" i = %d \n",i);
i = i + 1;
pause(10);
end