Page 114 - 6253
P. 114

System.out.println("Координати X Y: ");

                          for(int i=0; i<c.coords.length; i++)

                               System.out.println(c.coords[i].x + ", " + c.coords[i].y);

                          System.out.println();

                      }

                      static void showXYZ(Coords<? extends ThreeD> c) {

                          System.out.println("Координати X Y Z: ");

                          for(int i=0; i<c.coords.length; i++)

                               System.out.println(c.coords[i].x + ", " + c.coords[i].y +
                              ", " + c.coords[i].z);

                          System.out.println();

                      }


                      static void showXYZT(Coords<? extends FourD> c) {

                          System.out.println("Координати X Y Z T: ");

                          for(int i=0; i < c.coords.length; i++)

                               System.out.println(c.coords[i].x + ", " + c.coords[i].y +
                              ", " + c.coords[i].z + ", " + c.coords[i].t);

                          System.out.println();

                      }

                      public static void main (String args[]) {



                          TwoD td[] = {

                               new TwoD(1, 2),

                               new TwoD(5, 10),


                               new TwoD(2, 4),

                               new TwoD(-10, -5)

                          };



                          Coords<TwoD> ctd = new Coords<TwoD>(td);



                          showXY(ctd); // Дозволено




                                                              113
   109   110   111   112   113   114   115   116   117   118   119