December 2018 1 44 Report
Popraw program w C++:
Brak zadekretowanej jakieś liczby
#include
#include
#include
using namespace std;
int main ()
{
double a,p,E,L;
cout<<"Podaj liczbe z ktorej chcesz obliczyc pierwiastek:";
cin>>p;
cout<<"Podaj dokladnosc obliczen:";
cin>>E;
cout<<"Podaj maksymalna liczbe iteracji krokow:";
cin>>L;
a=p;
int i=0;
while(abs(a-p/a)>E&&i {
a=(a+p/a)/2;
i ++;
}
cout<<"a:"< system ("pause");
return 0;

}


More Questions From This User See All

Recommend Questions



Life Enjoy

" Life is not a problem to be solved but a reality to be experienced! "

Get in touch

Social

© Copyright 2013 - 2024 KUDO.TIPS - All rights reserved.