wadkat

Demo

Jun 3rd, 2019
212
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1.  
  2. package Week3;
  3.  
  4. /**
  5. *
  6. * @author wei96
  7. */
  8. public class FractionDemo {
  9. public static void main(String[]args)
  10. {
  11. Fraction fnum = new Fraction();
  12. fnum.inputValues();
  13.  
  14.  
  15. while(fnum.getNumerator()>=0)
  16. {
  17. fnum.outputValues();
  18. fnum.inputValues();
  19. }
  20. }
  21. }
Add Comment
Please, Sign In to add comment