#include int main(int argc, char *argv[]) { double x; for ( x = 0.0; x <= 1.0; x = x + 1.0/9.0 ) printf("%g ", x); printf("\n"); }