返回列表 發帖

for 迴圈 (五)

利用 for 迴圈, 計算 1 加到 100.
Su Wa

  1. #include <iostream>
  2. #include <cstdlib>

  3. using namespace std;

  4. int main()
  5. {
  6.     int s=0;
  7.     for (int i=0; i<=100; i++)
  8.     {
  9.        s=s+i;
  10.     }
  11.     cout<<"1加到100= "<<s<<endl;
  12.     system("pause");
  13.     return 0;
  14. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int a=0;  
  7.     for(int i=0; i<=100; i++)
  8.     {
  9.         a=a+i;
  10.     }
  11.     cout<<"1加到100="<<a<<endl;
  12.     system("pause");
  13.     return 0;   
  14. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int x=0;
  7.     for(int i=1;i<=100; i++)
  8.     {
  9.           x=x+i;
  10.     }
  11.     cout<<"1加到100="<<x<<endl;
  12.     system("pause");
  13.     return 0;   
  14. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main(){
  5.     int sum=0;
  6.     for(int i=1; i<=100; i++){
  7.         sum=sum+i;
  8.     }
  9.     cout<<"1+2+...+100="<<sum<<endl;   
  10.     system("pause");
  11.     return 0;
  12. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int sum=0;  
  7.     for(int i=0; i<=100; i++)
  8.     {
  9.         sum=sum+i;
  10.     }
  11.     cout<<"1+2+3+...+100="<<sum<<endl;
  12.     system("pause");
  13.     return 0;   
  14. }
複製代碼

TOP

  1. #include <iostream>
  2. #include <cstdlib>

  3. using namespace std;

  4. int main()
  5. {
  6.     int s=0;
  7.     for (int i=0; i<=100; i++)
  8.     {
  9.        s=s+i;
  10.     }
  11.     cout<<"1加到100= "<<s<<endl;
  12.     system("pause");
  13.     return 0;
  14. }
複製代碼

TOP

本帖最後由 何郡毓 於 2020-7-31 15:51 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int s=0;
  7.     for(int i=0; i<=100; i=i++)
  8.     {
  9.         s=s+i;//1+2+...+100
  10.     }
  11.     cout<<"1+2+...+100="<<s<<endl;
  12.     system("pause");
  13.     return 0;
  14. }
複製代碼

TOP

本帖最後由 王晏璿 於 2020-7-31 15:52 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int sum=0;
  7.     for(int i=1; i<=100; i++)
  8.     {
  9.         sum=sum+i;
  10.     }
  11.     cout<<"1+2+3+4+...+99+100= "<<sum<<endl;   
  12.     system("pause");
  13.     return 0;
  14. }
複製代碼

TOP

返回列表