Advertisement
Polnochniy

Untitled

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