bc622faec9
From-SVN: r30759
17 lines
134 B
C
17 lines
134 B
C
int x, y;
|
|
|
|
int
|
|
main()
|
|
{
|
|
x = 2;
|
|
y = x;
|
|
do
|
|
{
|
|
x = y;
|
|
y = 2 * y;
|
|
}
|
|
while ( ! ((y - x) >= 20));
|
|
exit (0);
|
|
}
|
|
|