>>88
リストtest7_4.c
#include<stdio.h>
main()
{
int x;
x = 1;
while(x < 11){
printf("%d \n", x);
x = x + 1;
}
}