7 lines
78 B
C
7 lines
78 B
C
main()
|
|
{
|
|
int i;
|
|
for (i=0; i<11; i++)
|
|
printf("%2d %4d\n", i, i*i);
|
|
}
|