返回列表 發帖
哈哈 我寫好ㄌ
  1. #include <iostream>
  2. #include <cstdlib>
  3. using namespace std;
  4. float power(float x , int n){

  5.     float num = x;
  6.    
  7.     for(int i = 1; i < n; i++){
  8.         num = num * x;
  9.     }
  10.    
  11.     return num;
  12. }

  13. int main(void){
  14.    
  15.     float all = 0;
  16.    
  17.     for(int i = 1; i <= 10; i++){
  18.         all = all + (1 / power(2 , i));
  19.     }
  20.    
  21.     cout << all << endl;
  22.    
  23.     system("pause");
  24.     return 0;
  25. }
複製代碼

TOP

返回列表