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