while
トップへ
#include <stdio.h>
int main(void){
int i = 0;
while (i < 5){
printf("%3d ", i);
i++;
}
return 0;
}
check