Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /*
- * To change this license header, choose License Headers in Project Properties.
- * To change this template file, choose Tools | Templates
- * and open the template in the editor.
- */
- package com.spec;
- import com.spec.model.Car;
- /**
- *
- * @author Admin
- */
- public class CarUtils {
- /*
- 5) Создать метод, который выводит полную информацию по каждому авто из массива - параметра данного метода
- public static void printCars(Car[] array){
- // ...
- }
- */
- //
- public static void printCars(Car[] array){
- // цикл по массиву авто
- for(Car c: array){
- System.out.println("car info:");
- System.out.println("c.getColor()=" + c.getColor());
- System.out.println("c.getSpeed()=" + c.getSpeed());
- System.out.println("c.getM()=" + c.getM());
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement