d94b70212b
git-svn-id: http://picoc.googlecode.com/svn/trunk@81 21eae674-98b7-11dd-bd71-f92a316d2d60
13 lines
175 B
C
13 lines
175 B
C
int Count;
|
|
int Array[10];
|
|
|
|
for (Count = 1; Count <= 10; Count++)
|
|
{
|
|
Array[Count-1] = Count * Count;
|
|
}
|
|
|
|
for (Count = 0; Count < 10; Count++)
|
|
{
|
|
printint(Array[Count]);
|
|
}
|