![zik.saleeba](/assets/img/avatar_default.png)
git-svn-id: http://picoc.googlecode.com/svn/trunk@204 21eae674-98b7-11dd-bd71-f92a316d2d60
17 lines
129 B
C
17 lines
129 B
C
int a;
|
|
int p;
|
|
int t;
|
|
|
|
a = 1;
|
|
p = 0;
|
|
t = 0;
|
|
|
|
do
|
|
{
|
|
printf("%d\n", a);
|
|
t = a;
|
|
a = t + p;
|
|
p = t;
|
|
} while (a < 100);
|
|
|