#include /* pretpostavljamo da je broje x veci od 1 */ /* eps je preciznost */ float koren_binpret(float x, float eps){ float s,l,d; l=1; d=x; while(l=x-eps) return s; if(s*s>x) d=s; else l=s; } } int main(){ float x,eps; scanf("%f %f",&x,&eps); printf("%f\n",koren_binpret(x,eps)); return 0; }