Advertisement
Chieffo

Untitled

Sep 24th, 2014
232
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7. float a;
  8. float suma,srednia;
  9. float *t = new float[9];
  10.  
  11. for(int i=0;i<9;i++)
  12. {
  13. cin>>a;
  14. cout<<" ";
  15. t[i]=a;
  16. suma=suma+t[i];
  17. }
  18.  
  19. srednia=suma/9;
  20. cout<<srednia<<endl;
  21.  
  22.  
  23.  
  24. cout << "Hello world!" << endl;
  25. return 0;
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement