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