Добавил:
homeworkwizard
Опубликованный материал нарушает ваши авторские права? Сообщите нам.
Вуз:
Предмет:
Файл:lab9-10
.java //Exceeds the length
class Exercise33 {
public static void main(String[] args) {
int nums[] = { 20, 20, 30, 40, 50, 50, 50 };
System.out.println("Length " + nums.length);
System.out.print("Exceeds the legth " + nums[7]);
}
}
class Exercise33 {
public static void main(String[] args) {
int nums[] = { 20, 20, 30, 40, 50, 50, 50 };
System.out.println("Length " + nums.length);
System.out.print("Exceeds the legth " + nums[7]);
}
}
Соседние файлы в предмете Программирование на Java