Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- using namespace std;
- int main()
- {
- double n;
- cin >> n;
- for (int i = 1; i <= n; i++) {
- (1 + 1 / pow(n,2)) *= (1 + 1 / pow(i,2));
- }
- cout << n << endl;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement