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