| bekbolat    Пользователь 
  Сейчас: Offline 
 Имя: BekbolatОткуда: пос. Джаслык
 Регистрация: 05.04.2017
 
 | Скажите пожалуйста, где у меня здесь ошибка? Вроде всё правильно, а компилятор ругается на Line 11 Column 5
 interface t
 {
 public int a_int;
 public int[] a_ints;
 public int[] b_ints;
 public int[] c_ints;
 public int[] d_ints;
 public int[] e_ints;
 
 static
 {
 int a_int = Math.min(0xffff, 0xfffb);
 a_ints = new int[]{0, 4, 4, 4, 4, 8, 8, 8, 32, 32};
 b_ints = new int[]{0, 4, 5, 6, 4, 16, 16, 32, 128, 258};
 c_ints = new int[]{0, 8, 16, 32, 16, 32, 128, 128, 258, 258};
 d_ints = new int[]{0, 4, 8, 32, 16, 32, 128, 256, 1024, 0x1000};
 e_ints = new int[]{0, 1, 1, 1, 1, 2, 2, 2, 2, 2};
 }
 
 }
 
 |