- }
-
- // Test
- public static void main(String args[]) throws CeroDenExc {
- try {
- Fraccion f = new Fraccion(10, 0);
- } catch (CeroDenExc e) {
- System.out.println("Ahhh! Esta rota la fraccion!"
- + " tiene numerador " + e.getNum() + " y divisor 0");
- }
- Fraccion f1 = new Fraccion(2, 10);
- System.out.println("f1 = " + f1);
- System.out.println("f1 + f1 = " + f1.mas(f1));
- Fraccion f3 = f1.menos(new Fraccion(100, 4));
- System.out.println("f3 = " + f3);
- System.out.println("f3 comparado a f1 = " + f3.compareTo(f1));
- //System.out.println("Java esta roto en el manejo de excepciones!!!");