Advertisement
Glenpl

Untitled

Jan 25th, 2015
238
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.41 KB | None | 0 0
  1. #include <iostream>
  2. #include <conio.h>
  3. int main()
  4. {
  5.     std::cout<<"Podawaj kolejne liczby lub wpisz 0 aby zakonczyc: ";
  6.     double wynik=0, ilosc=0, liczba;
  7.     do
  8.     {
  9.         std::cin>>liczba;
  10.         wynik += liczba;
  11.         ilosc++;
  12.     }
  13.     while(liczba != 0);
  14.  
  15.     wynik/=(ilosc-1);
  16.  
  17.     std::cout<<"\nPodales "<<ilosc-1<<" liczb. Ich srednia to: "<<wynik<<".\n";
  18.     getch();
  19.     return 0;
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement