Advertisement
TheDuliX_

Untitled

Aug 23rd, 2021
25
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.  
  4. int main() {
  5. int broj;
  6. for (int i = 0; i < 10; i++)
  7. {
  8. cout << "Unesite broj: ";
  9. cin >> broj;
  10. }
  11. int suma = broj + broj + broj + broj + broj + broj + broj + broj + broj + broj;
  12. cout << "Suma je: " << suma << endl;
  13. int srednjavrednost = suma / 10;
  14. cout << "Srednja vrednost je: " << srednjavrednost;
  15.  
  16. return 0;
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement