O_Egor

laba4(Dot)

Mar 22nd, 2020
187
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.18 KB | None | 0 0
  1. package com.company;
  2.  
  3. public class Dot {
  4.     double x, y, z;
  5.  
  6.     public Dot(double x, double y, double z){
  7.         this.x = x;
  8.         this.y = y;
  9.         this.z = z;
  10.     }
  11.  
  12. }
Add Comment
Please, Sign In to add comment