Advertisement
Guest User

Untitled

a guest
Oct 9th, 2015
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.29 KB | None | 0 0
  1. #include "b15.h"
  2.  
  3. int main()
  4. {
  5.     int a, b, c, d, k, m;
  6.     cout << "a/b = ";
  7.     cin >> a >> b;
  8.     cout << "c/d = ";
  9.     cin >> c >> d;
  10.     cout << "k/m = ";
  11.     cin >> k >> m;
  12.     cout << "a/b : c/d : k/m = ";
  13.     divisionF(a, b, c, d);
  14.     divisionF(a, b, k, m);
  15.     printF(a, b);
  16.     cout << endl;
  17.     return 0;
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement