for
トップへ
スタート
#include <stdio.h>
int main(void) {
int i;
for (i = 0; i < 5; i++) {
printf("%2d回目", i);
}
return 0;
}
ゴール
○変数の値○
○実行結果○