home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 September / Chip_2004-09_cd1.bin / program / java / download / ArrayTest.java < prev    next >
Text File  |  2004-07-14  |  844b  |  35 lines

  1. public class ArrayTest {
  2.  
  3.        public static void main(String[] args) {
  4.        
  5.        int[] pole = {10, 16, 20, 30};  // deklarace a inicializace pole ctyrmi prvky
  6.        
  7.        System.out.println("pocet prvku pole: " + pole.length);
  8.        
  9.        System.out.println("soucet vsech prvku");
  10.        int a = 0;
  11.        for (int i = 0; i < pole.length; i ++) {
  12.        
  13.               a += pole[i];
  14.        
  15.        }
  16.        System.out.println("soucet hodnot pole: " + a);
  17.        
  18.        System.out.println("soucet kazdeho druheho prvku");
  19.        a = 0;
  20.        for (int i = 0; i < pole.length; i += 2) {
  21.        
  22.               a += pole[i];
  23.        
  24.        }
  25.        System.out.println("soucet hodnot pole: " + a);
  26.        
  27.        System.out.println("soucet prvniho a posledniho prvku");
  28.        a = pole[0] + pole[pole.length -1];
  29.        
  30.        System.out.println("soucet hodnot pole: " + a);
  31.        
  32.        }
  33. }
  34.  
  35.