progtech zh

This commit is contained in:
anon
2024-06-07 11:46:34 +02:00
parent 5141ce8dc1
commit 6843d11189
11 changed files with 1179 additions and 0 deletions

12
Java/zh/HotDrink.java Normal file
View File

@ -0,0 +1,12 @@
abstract class HotDrink {
int boilingTemperature;
String keyComponent;
public int getBoilingTemperature() {
return boilingTemperature;
}
public String getKeyComponent() {
return keyComponent;
}
}