Advertisement
Guest User

POPRAWIONE_ZAD1

a guest
Oct 26th, 2016
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7. int suma=0;
  8. int x;
  9. cin >> x;
  10.  
  11. int tab[x];
  12.  
  13. for (int i=0;i<x;i++){
  14.  
  15. cin>> tab[i];
  16. }
  17.  
  18. for (int j=0;j<x;j++){
  19. suma=suma + tab[j];
  20. cout<<suma<<" ";
  21. }
  22.  
  23. return 0;
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement