#include <stdio.h> int main() { int i; float f=1.0; for( i=0; i<9; i++, f /= 10 ) { printf("%10.8f\n", f); } return 0; }