Advertisement
Guest User

Untitled

a guest
Feb 25th, 2020
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.74 KB | None | 0 0
  1. /******************************************************************************
  2.  
  3. Online C++ Compiler.
  4. Code, Compile, Run and Debug C++ program online.
  5. Write your code in this editor and press "Run" button to compile and execute it.
  6.  
  7. *******************************************************************************/
  8.  
  9. #include <iostream>
  10.  
  11. using namespace std;
  12.  
  13. int main()
  14. {
  15. float x,y;
  16. int n;
  17. do {
  18. cout<<"Unesi broj: ";
  19. cin>>x;
  20. y += x;
  21. n++;
  22. if ( x == 0 ) {
  23. n--;
  24. y = y / n;
  25. break;
  26. }
  27. } while (x!=0);
  28. cout<<"Uneseno je "<<n<<" brojeva."<<" Srednja vrijednost je: "<<y;
  29. return 0;
  30. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement