Advertisement
noler89

Untitled

Apr 4th, 2015
188
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. #include "Rational.h"
  2. int main(){
  3. Rational t1;
  4. Rational t2;
  5. system("pause");
  6. cin >> t1;
  7. system("pause");
  8. cin >> t2;
  9. Rational t3 = t1 + t2;
  10. cout << t3;
  11. system("pause");
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement