Advertisement
TheDuliX_

Untitled

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