Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download

📚 The CoCalc Library - books, templates and other resources

132939 views
License: OTHER
1
public class Baby {
2
/** Der Vor- und Nachname des Babys */
3
public String name;
4
5
/** Gewicht in Gramm */
6
public int weight;
7
8
/** Größe in cm */
9
public int size;
10
11
/** Lautstärke in dB */
12
public float loudness;
13
}
14
15
16