Advertisement
TheDuliX_

Untitled

Aug 26th, 2021
20
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main() {
  6. int broj;
  7. int broj2;
  8. const int i = 0;
  9. int sabiranje;
  10.  
  11. while (i < broj)
  12. {
  13. cout << "Unesite broj: ";
  14. cin >> broj;
  15. if (i < broj) {
  16. broj2 = broj;
  17. sabiranje += broj2;
  18. }
  19.  
  20. }
  21. cout << "Suma je: " << sabiranje;
  22.  
  23.  
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement