Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package punto2;
- public class Auto {
- private char direccion;
- private int c1;
- private int c2;
- public Auto(char direccion, int c1, int c2) {
- this.direccion = direccion;
- this.c1 = c1;
- this.c2 = c2;
- }
- public char getDireccion() {
- return direccion;
- }
- public int getC1() {
- return c1;
- }
- public int getC2() {
- return c2;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement