Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <cmath>
- #include <iostream>
- using namespace std;
- void Pos(double& sum,int& n)
- {
- n=1;
- double a=1;
- cout<<"\tВычисление членов последовательности: "<<endl;
- cout<<"\tномер \tзначение "<<endl;
- while (a>0 && sum<4)
- {
- cout<<'\t'<<n<<'\t'<<'\t'<<sum<<endl;
- a=a*(sqrt(n)/sqrt(n+1));
- sum = sum+a;
- n++;
- }
- }
- void GETN(int& n)
- {
- setlocale(LC_ALL,"rus");
- cout<<"Введите n ";
- cin>>n;
- }
- void PUTXN(double sum, int n){
- cout << "При n = "<< n << endl;
- cout << "Значение выражения = " << sum << endl;
- cout << n << "- является минимальным n при котором выражение больше 4" << endl << endl;
- }
- int main()
- {
- int n;
- double sum =1;
- GETN(n);
- Pos(sum,n);
- PUTXN(sum,n);
- return 0;
- }
Add Comment
Please, Sign In to add comment