This website works better with JavaScript
ホーム
エクスプローラ
ヘルプ
サインイン
PoleCalcul
/
tutoriaux_calculco
ウォッチ
3
スター
0
フォーク
0
ファイル
課題
0
プルリクエスト
0
Wiki
ツリー:
c15d5fe871
ブランチ
タグ
master
tutoriaux_ca...
/
checkpoint
/
compteur.m
compteur.m
84 B
履歴
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