Advertisement
Guest User

Untitled

a guest
Oct 24th, 2016
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7. int a,b,c,d;
  8. float ap;
  9. cout << "Zadaj hodnotu do premennej a: ";
  10. cin >> a;
  11. cout << "Zadaj hodnotu do premennej b: ";
  12. cin >> b;
  13. cout << "Zadaj hodnotu do premennej c: ";
  14. cin >> c
  15. cout << "Zadaj hodnotu do premennej d :" ;
  16. cin >> d;
  17. cout << endl;
  18. ap = (a + b + c +d)/4
  19.  
  20. cout << "Aritmetický priemer je : " << ap << endl;
  21. char reakcia;
  22. cin >> reakcia;
  23. return 0;
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement