返回列表 發帖

[挑戰題(易)] [隨堂測驗] for 迴圈 (七) - 累加2

本帖最後由 鄭繼威 於 2023-1-13 21:00 編輯

改寫for 迴圈 (五) - 累加
讓其可以看到每次的sum是多少

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int sum=0,counter=1;
  7.     //累加初始值為0  計數器

  8.     for(int i=1;i<=100;i+=1){
  9.             sum=sum+i;
  10.             cout<<"第"<<counter<<"次"<<"目前的sum="<<sum<<endl;
  11.             counter++;
  12.         }
  13.         cout<<"最後1~100="<<sum<<endl;
  14.    
  15.     system("pause");
  16.     return 0;
  17. }
複製代碼

此帖僅作者可見

TOP

此帖僅作者可見
Attention Seeker </3

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

返回列表