作者joychan (OK)
看板NTUBIME96-HW
标题Re: [Q]计程考古题答案
时间Thu Nov 20 11:13:45 2003
※ 引述《pipibjc ( )》之铭言:
: : 【第五题】
: : // Problem 5
: : #include "stdafx.h"
: : #include <iostream>
: : using std::cin;
: : using std::cout;
: : using std::endl;
: : void main(void)
: : {
: : float s = 0.0;
: : int n;
: : cout << "Please give the number of terms in the S series\n";
: : cin >> n; // Get the number of terms
: : for( int i=1; i<=n; i++) // Calculate the S series
: : {
: : s = s + 1.0/i/i;
: ^^^ 要除两次i? 一次就好了...吧?!
除两次没错吧?!因为是n平方分之一啊....
: : }
: : cout << "S = " << s << endl; // Output the result
: : }
--
※ 发信站: 批踢踢实业坊(ptt.cc)
◆ From: 140.112.170.121
1F:→ pipibjc:题目不是1/n吗?@@a 推 140.112.30.91 11/20
2F:→ joychan:是n平方吧.....网页上平方那个2有点模糊 推140.112.170.121 11/20
3F:→ joychan:板上po的是一次,网页上的是平方...... 推140.112.170.121 11/20