@param args the command line arguments
(String[] args)
| 7 | * @param args the command line arguments |
| 8 | */ |
| 9 | public static void main(String[] args) { |
| 10 | ADTFraction f1=new ADTFraction(3,5); |
| 11 | f1.display(); |
| 12 | ADTFraction f2=new ADTFraction(7,8); |
| 13 | f2.display(); |
| 14 | } |
| 15 | |
| 16 | } |
| 17 |