Advertisement
sergAccount

Untitled

Oct 4th, 2020
1,246
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.68 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 app53;
  7.  
  8. public class Car {    
  9.     // По своей структуре класс состоит из двух частей:
  10.     // 1-я часть - свойства
  11.     // 2-я часть - методы
  12.    
  13.     // свойства:
  14.     // цвет авто
  15.     String color; // тип переменнной String, color - имя свойства  
  16.     // масса авто
  17.     double m;
  18.     // текущая скорость авто
  19.     double speed;
  20.    
  21.    
  22. }
  23.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement