float x,y,rezult; for(int j=1; j<500000; j++){ y =(float)j; for(int i=1; i<500000; i++){ x=(float)i; rezult = x - (x/y)*y; if (rezult != 0){cout<<rezult;}; }; };
float x,y,rezult; for(int j=1; j<500000; j++){ y =(float)j; for(int i=1; i<500000; i++){ x=(float)i; rezult = x - (x/y)*y; cout<<rezult; }; };