fork(1) download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. int n;
  6. cin >> n;
  7. int a[n];
  8. for(int i=0;i<n;i++){
  9. cin >> a[i];
  10. }
  11. int b[n];
  12. int S=0;
  13. b[0]=a[0];
  14. for(int i=1;i<n;i++){
  15. S+=a[i-1];
  16. b[i]=S;
  17. }
  18. for(int i=0;i<n;i++){
  19. printf(" %d ", b[i]);
  20. }
  21. return 0;
  22. }
Success #stdin #stdout 0s 3300KB
stdin
9
1 2 3 4 5 6 7 8 9 
stdout
 1  1  3  6  10  15  21  28  36