Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- #include <cmath>
- using namespace std;
- int main()
- {
- double wsp[2]= {1,-4},dokladnosc=0.01,lewy,prawy,w_l=0,w_p=0;
- cin >>lewy>>prawy;
- for(int i=1; i>=0; i--)
- {
- w_l+=wsp[i]*pow(lewy,abs(i-1));
- w_p+=wsp[i]*pow(prawy,abs(i-1));
- }
- cout <<w_l<<"\n\n"<<w_p<<endl;
- //while()
- if (w_l>0&&w_p>0 || w_l<0&&w_p<0)
- cout <<"nie ma miejsc zerowych w zakresie"<<endl;
- else
- cout <<"sa miejsca zerowe w zakresie"<<endl;
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement