Re: [Q]計程考古題答案
※ 引述《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
推
推 140.112.30.91 11/20, , 1F
推 140.112.30.91 11/20, 1F
推
推140.112.170.121 11/20, , 2F
推140.112.170.121 11/20, 2F
推
推140.112.170.121 11/20, , 3F
推140.112.170.121 11/20, 3F
討論串 (同標題文章)
本文引述了以下文章的的內容:
完整討論串 (本文為第 2 之 2 篇):