1. 51.
    0
    int counter=1;
    long double temp =20.0;
    long double target=20.0;

    while(target<200.0)
    {
    temp=temp/2.0;
    target=target+temp;
    counter+=1;
    cout<<"target: "<<setprecision(20)<<target<<" "<<"counter:"<<counter<<endl;
    getchar();

    }
    53. adımda 40 da sabitleniyo.
    ···
   tümünü göster