返回列表 發帖

11101_b9修正題

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;

  4. int main() {
  5.       double x = 0, y = 1;
  6.       int i = 1, n = 10;
  7.       while (n--) {
  8.           x = x + y / i;
  9.           y = -y;
  10.           i = i + 3;
  11.       }
  12.       cout<<i;
  13.       system("pause");
  14.       return 0;  
  15. }
複製代碼
輸出多少?

本帖隱藏的內容需要回復才可以瀏覽
istak.teach2@gmail.com

此帖僅作者可見

TOP

返回列表