D-Gj

Delenje

Apr 5th, 2013
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.20 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. double podeli(double a, double b)
  6. {
  7.     return a / b;
  8. }
  9.  
  10. int main()
  11. {
  12.     double m, n;
  13.     cin >> m >> n;
  14.     cout << podeli(m, n);
  15.     return 0;
  16. }
Advertisement
Add Comment
Please, Sign In to add comment