Advertisement
Polnochniy

Untitled

Nov 13th, 2019
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. #include <iostream>
  2. #include <vector>
  3. using namespace std;
  4. int main()
  5. {
  6. setlocale(LC_ALL, "Rus");
  7. int N;
  8. int Sum = 0;
  9. cout << "Введите число элементов " << endl;
  10. cin >> N;
  11. vector<int> a(N);
  12. cout << "Введите элементы массива ." << endl;
  13. for (int i = 0; i < N; i++)
  14. {
  15. cin >> a[i];
  16. }
  17.  
  18. for (int sum :a)
  19. {
  20. Sum += sum;
  21. }
  22.  
  23. cout << "Сумма элементов массива равна = " << Sum;
  24. return 0;
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement