Advertisement
sergAccount

Untitled

Aug 23rd, 2020
922
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.96 KB | None | 0 0
  1. /*
  2.  * To change this license header, choose License Headers in Project Properties.
  3.  * To change this template file, choose Tools | Templates
  4.  * and open the template in the editor.
  5.  */
  6. package com.spec;
  7.  
  8. import com.spec.model.Car;
  9.  
  10.  
  11. /**
  12.  *
  13.  * @author Admin
  14.  */
  15. public class CarUtils {
  16.    
  17.     /*
  18.     5) Создать метод, который выводит полную информацию по каждому авто из массива - параметра данного метода
  19.     public static void printCars(Car[] array){
  20.     // ...  
  21.     }
  22.     */
  23.     //
  24.     public static void printCars(Car[] array){
  25.         // цикл по массиву авто
  26.         for(Car c: array){
  27.             System.out.println("car info:");
  28.             System.out.println("c.getColor()=" + c.getColor());
  29.             System.out.println("c.getSpeed()=" + c.getSpeed());
  30.             System.out.println("c.getM()="     + c.getM());
  31.         }
  32.     }
  33. }
  34.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement