返回列表 發帖

2023/9/12 課程重點(炫霆)

本帖最後由 呂晉豪 於 2023-9-22 18:42 編輯

[課堂重點]
字串處理 (一)
字串處理 (二) - 字串輸入 1
字串處理 (三) - 字串輸入 2

[回家作業]
[作業] 函式的建立與執行 (三)

[課堂考試]
卷10

[作業檢討]
經濟大恐荒
卷12

本帖最後由 董炫霆 於 2023-9-12 18:28 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<cmath>
  4. using namespace std;
  5. int main(){

  6.     int a;
  7.     cin>>a;
  8.    
  9.     int v,m=1,sum=0;
  10.     for(int i=1;i<=a;i++){
  11.         cin>>v;
  12.         sum+=v*m;
  13.         m++;
  14.         v--;
  15.     }
  16.     cout<<sum<<endl;
  17.     system("pause");
  18.     return 0;
  19. }
複製代碼

TOP

返回列表