Advertisement
Polnochniy

Untitled

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