diff --git a/src/Concat.class b/src/Concat.class new file mode 100644 index 0000000..a0a9cd6 Binary files /dev/null and b/src/Concat.class differ diff --git a/src/Hello.class b/src/Hello.class new file mode 100644 index 0000000..a460953 Binary files /dev/null and b/src/Hello.class differ diff --git a/src/PariDispari.class b/src/PariDispari.class new file mode 100644 index 0000000..c18c369 Binary files /dev/null and b/src/PariDispari.class differ diff --git a/src/Rettangolo.class b/src/Rettangolo.class new file mode 100644 index 0000000..6513544 Binary files /dev/null and b/src/Rettangolo.class differ diff --git a/src/RettangoloDaTastiera.class b/src/RettangoloDaTastiera.class new file mode 100644 index 0000000..291df55 Binary files /dev/null and b/src/RettangoloDaTastiera.class differ diff --git a/src/RettangoloDaTastiera.java b/src/RettangoloDaTastiera.java index 76cd561..365f227 100644 --- a/src/RettangoloDaTastiera.java +++ b/src/RettangoloDaTastiera.java @@ -8,22 +8,22 @@ public class RettangoloDaTastiera{ int i=0, imax=0; Scanner in = new Scanner(System.in); + System.out.println("Inserisci la x, la y, la larghezza e l'altezza: "); + ret = new Rectangle(in.nextInt(), in.nextInt(), in.nextInt(), in.nextInt()); + + while(ret.getX()!=0 || ret.getY()!=0 || ret.getWidth()!=0 || ret.getHeight()!=0){ + i++; + if(retMax==null || ret.getWidth()*ret.getHeight()>retMax.getWidth()*retMax.getHeight()){ + retMax=ret; + imax=i; + } System.out.println("Inserisci la x, la y, la larghezza e l'altezza: "); ret = new Rectangle(in.nextInt(), in.nextInt(), in.nextInt(), in.nextInt()); + } - while(ret.getX()!=0 || ret.getY()!=0 || ret.getWidth()!=0 || ret.getHeight()!=0){ - i++; - if(retMax==null || ret.getWidth()*ret.getHeight()>retMax.getWidth()*retMax.getHeight()){ - retMax=ret; - imax=i; - } - System.out.println("Inserisci la x, la y, la larghezza e l'altezza: "); - ret = new Rectangle(in.nextInt(), in.nextInt(), in.nextInt(), in.nextInt()); - } - - if(retMax==null) - System.out.println("IMPOSSIBILE ESEGURE L'OPERAZIONE.\nSono stati inseriti zero rettangoli"); - else - System.out.println("Il "+imax+"° ha l'area massima"); + if(retMax==null) + System.out.println("IMPOSSIBILE ESEGURE L'OPERAZIONE.\nSono stati inseriti zero rettangoli"); + else + System.out.println("Il "+imax+"° ha l'area massima"); } }