Advertisement
sellmmaahh

z12

Mar 2nd, 2015
228
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.35 KB | None | 0 0
  1. #include <iostream>
  2. #include <cmath>
  3.  
  4. int main ()
  5. {
  6.     int i(1);
  7.     double x, a(0), g(1);
  8.     std::cout<<"Unesite realne brojeve: ";
  9.     while (std::cin>>x, x!=0)
  10.     {
  11.         a+=x;
  12.         g*=x;
  13.         i++;
  14.  
  15.     }
  16.     std::cout<<"Aritmeticka sredina: "<<a/(i-1)<<std::endl<<"Geometrijska sredina: "<<pow(g,1./(i-1));
  17.  
  18.     return 0;
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement