Контрольная работа по "Информатике"
Автор: DilieKang • Октябрь 28, 2022 • Контрольная работа • 312 Слов (2 Страниц) • 140 Просмотры
1)#include <iostream>
#include <cmath>
using namespace std;
int main() {
int x, n;
double s;
n=1;
x=1;
while (n<10) {
n+=2;
s+=x+(pow(x,n))/n;
}
cout<<"s="<<s;
}
Ответ: s=5.87821
2)#include <iostream>
#include <cmath>
using namespace std;
int main() {
int x, n;
double s;
n=1;
x=1;
while (n<10) {
n+=2;
s+=x-(pow(x,n))/n;
}
cout<<"s="<<s;
}
Ответ: s=5.87821
3)#include <iostream>
#include <cmath>
using namespace std;
int main() {
int x, n;
double s;
n=1;
x=1;
while (n<10) {
n+=3;
s+=x+(pow(x,n))/n;
}
cout<<"s="<<s;
}
Ответ: s=3.49286
4)#include <iostream>
#include <cmath>
using namespace std;
int main()
{
int n;
double s=0;
cout << "n = ", cin >> n;
for (int i=1; i<=n; i++) s += (double)1/pow(i,i);
cout << s;
return 0;
}
Ответ:
...