返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     float a=100, s=0;
  7.     for(int i=1; i<=10; i++)
  8.     {
  9.         s+=a;
  10.         a/=2;
  11.         s+=a;
  12.     }
  13.     cout<<"共經過"<<s<<"公尺"<<endl;
  14.     cout<<"第10次反彈"<<a<<"公尺"<<endl;
  15.     system("pause");
  16.     return 0;
  17. }
複製代碼

TOP

返回列表