From b84975e11b70045c2eaa9e1981da1478513bf51f Mon Sep 17 00:00:00 2001 From: Dayana31 <70593166+Dayana31@users.noreply.github.com> Date: Mon, 11 Apr 2022 01:55:25 -0500 Subject: Clases para algoritmo en Java --- VRP/src/Algoritmo/Ciudad.java | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 VRP/src/Algoritmo/Ciudad.java (limited to 'VRP/src/Algoritmo/Ciudad.java') diff --git a/VRP/src/Algoritmo/Ciudad.java b/VRP/src/Algoritmo/Ciudad.java new file mode 100644 index 0000000..81ef2c6 --- /dev/null +++ b/VRP/src/Algoritmo/Ciudad.java @@ -0,0 +1,18 @@ +/* + * 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 Algoritmo; + +/** + * + * @author DAYANA + */ +public class Ciudad { + String nombre; + String region; + double longitud; + double latitud; + +} -- cgit v1.2.3