home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The C Users' Group Library 1994 August
/
wc-cdrom-cusersgrouplibrary-1994-08.iso
/
listings
/
v_08_08
/
8n08122a
< prev
next >
Wrap
Text File
|
1990-07-18
|
369b
|
25 lines
#include <stdio.h>
#include <ctype.h>
#include <math.h>
void main()
{
float f;
int index, n = 75;
f = 10000.0 / 3.0;
for(index = 1; index < n; index++)
{
f = f / 10.0;
printf(" %d %e\n", index, f);
}
}
LISTING 1