Advertisement
Guest User

Untitled

a guest
Apr 17th, 2014
34
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. package linnell_a_1;
  2.  
  3. public class linnell_a_1 {
  4.  
  5. public static void main(String[] args) {
  6. // TODO Auto-generated method stub
  7. Rat x=new Rat(3,5); //create new fraction
  8. System.out.println("Fraction: " + x.num + "/" + x.denom);
  9. System.out.println(x.toDouble());
  10. }
  11.  
  12. }
  13.  
  14. prints
  15.  
  16. Fraction: 3/5
  17. 3
  18. 5
  19. 0.0
  20. 3.0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement