Для заданного натурального n и действительного x подсчитать: s=1+1/sqrt(2)+1/sgrt(3)++1/sgrt(n) вот код программы, в чем ошибка? #include #include using namespace std; int main() { int n; float s=0,b=0; cout< < "n="; cin> > n; for (int i=1; i< =n; i++) {b=(1/sqrt(n)); s+=b; } cout < < "s="< return 0; }

ViKa09089009 ViKa09089009    2   14.09.2019 23:10    1

Ответы
#include <iostream>
#include <cmath>
using namespace std;
int main() {
int n;
float s = 1,b = 0;
cout << "n=";
cin >> n;
for (int i=2; i<=n; i++){
    b=(1/sqrt(i));
    s += b;
}
cout <<"s="<< s << endl;
return 0;
}
ПОКАЗАТЬ ОТВЕТЫ
Другие вопросы по теме Информатика