Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import java.time.LocalDateTime;
- public class Messung {
- double wert;
- LocalDateTime zeit;
- public Messung (double _wert, LocalDateTime _zeit){
- zeit = _zeit;
- wert = _wert;
- }
- public LocalDateTime getZeit(){
- return zeit;
- }
- public double getWert(){
- return wert;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement