Polnochniy

Untitled

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