Newer
Older
Map-Refactor / src / main / java / Longitude.java
Okina-kina on 6 Nov 2023 222 bytes initial commit
import java.util.*;

public class Longitude {
	private double value;
	public double getValue() {
		return this.value;
	}
	public double updateGPS(double lat2, double long2) {
		this.value = long2;
		return this.value;
	}
}