Нужно в C++ вычислить ∑ 1/i², где i принимает значения от 1 до 50. Программу написал, но она выдаёт неверное значение суммы. Почему?

#include
using namespace std;
int main ()
{
int S,i;
for (S=0, i=1; i<=50; i++)
S+=1/(i*i);
cout <<"S="< }
Please enter comments
Please enter your name.
Please enter the correct email address.
You must agree before submitting.

Answers & Comments


Copyright © 2024 SCHOLAR.TIPS - All rights reserved.